Phase 5 Batch 2: 4 RM Tool + rm 客户端 + 日志降级链

- internal/rm/client.go: YARN RM 客户端
  - ListApps / GetApp / KillApp / GetLogs
  - GetLogs 降级链数据驱动 (amContainerLogs → aggregated-logs → logs)
  - 跨主机 redirect 保留 Authorization (URLAllowlist 兜底)
- 4 Tool: list_applications / get_application_status /
  get_application_logs / kill_application
  - mcp.WithEnum(state) 约束 YARN app 状态
  - tool handler 永远 (result, nil), 业务错误用 NewToolResultError
- deps.go: +HTTPClient + MaxResponseBytes
- main.go: 注入 httpclient.Client
- 端到端实测: mock RM 验证 4 Tool + 降级链 + 错误路径

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
tao.chen
2026-07-10 16:50:27 +08:00
co-authored by Claude
parent 705665745e
commit c4ac3cc354
9 changed files with 885 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
package tools
import (
"context"
"github.com/mark3labs/mcp-go/mcp"
"spark-mcp-go/internal/rm"
)
const ListApplicationsName = "list_applications"
// NewListApplicationsTool returns the schema for the list_applications MCP Tool.
func NewListApplicationsTool() mcp.Tool {
return mcp.NewTool(ListApplicationsName,
mcp.WithDescription("List YARN applications from a cluster's ResourceManager. Returns the raw RM JSON response so the agent can inspect app IDs, states, and owners."),
mcp.WithString("cluster_id",
mcp.Required(),
mcp.Description("ID of the configured cluster (from list_clusters)"),
),
mcp.WithString("state",
mcp.Description("Filter by application state. YARN accepts comma-separated states; common values: NEW, NEW_SAVING, SUBMITTED, ACCEPTED, RUNNING, FINISHED, FAILED, KILLED."),
),
mcp.WithString("user",
mcp.Description("Filter by submitting user."),
),
)
}
// ListApplicationsHandler queries the ResourceManager for applications.
func (d *Deps) ListApplicationsHandler(ctx context.Context, req mcp.CallToolRequest) (*mcp.CallToolResult, error) {
clusterID, err := req.RequireString("cluster_id")
if err != nil {
return errResult("list_applications: " + err.Error()), nil
}
args := req.GetArguments()
state := ""
if v, ok := args["state"].(string); ok {
state = v
}
user := ""
if v, ok := args["user"].(string); ok {
user = v
}
callLog := startToolCall(ctx, d.Logger, ListApplicationsName, map[string]any{
"cluster_id": clusterID,
"state": state,
"user": user,
})
defer callLog.End()
cl, err := d.ClusterRepo.Get(ctx, clusterID)
if err != nil {
callLog.WithError(err)
return errResult("list_applications: cluster " + clusterID + ": " + err.Error()), nil
}
rmc := rm.New(d.HTTPClient, cl)
raw, err := rmc.ListApps(ctx, state, user)
if err != nil {
callLog.WithError(err)
return errResult("list_applications: " + err.Error()), nil
}
callLog.WithResult(map[string]any{"bytes": len(raw)})
return textResult(string(raw)), nil
}