一键导入
fleetq-connect
Connect an agent to FleetQ over MCP or the REST API, including obtaining credentials via dynamic client registration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Connect an agent to FleetQ over MCP or the REST API, including obtaining credentials via dynamic client registration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build, validate, cost, and execute FleetQ visual DAG workflows — including generating one from a natural-language goal.
Create, run, monitor, and recover a FleetQ experiment through its 20-state pipeline via MCP tools or the REST API.
| name | fleetq-connect |
| description | Connect an agent to FleetQ over MCP or the REST API, including obtaining credentials via dynamic client registration. |
FleetQ exposes every platform capability to agents. Use this skill to establish a working connection before calling any other FleetQ skill.
| Transport | Endpoint | Use when |
|---|---|---|
| MCP over HTTP/SSE | POST {{APP_URL}}/mcp | Your runtime speaks Model Context Protocol. Preferred — you get typed tools for the whole platform. |
| REST API v1 | {{APP_URL}}/api/v1 | You want plain HTTP. Described by OpenAPI 3.1. |
Both use bearer tokens in the Authorization header.
FleetQ supports RFC 7591 dynamic client registration, so an agent can self-provision without human setup.
GET {{APP_URL}}/.well-known/oauth-authorization-serverPOST your client metadata to the advertised registration_endpoint
({{APP_URL}}/oauth/register). Rate limit: 20 requests per hour per IP.S256) against the
authorization_endpoint, requesting the mcp:use scope.token_endpoint for an access token.Full detail: {{APP_URL}}/auth.md
Alternatively, a human operator can mint a Sanctum API token from Team settings → API tokens and pass it to you directly.
GET {{APP_URL}}/api/v1/health
Returns platform health without authentication — use it to confirm reachability before debugging credentials.
Then confirm your token works:
GET {{APP_URL}}/api/v1/me
Authorization: Bearer <access_token>
A 401 means the token is missing, expired, or lacks the mcp:use scope.
{{APP_URL}}/.well-known/fleetq — machine-readable discovery document.{{APP_URL}}/.well-known/api-catalog — RFC 9727 catalog of API surfaces.{{APP_URL}}/llms.txt — compact platform index.tools/list to enumerate the available tools directly.