agentcentral_setup
Retrieve connection details and setup link to integrate Amazon seller data with AI clients via the agentcentral MCP server.
Instructions
Returns the connection details and setup link for the hosted agentcentral MCP server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:255-268 (handler)The handler that executes the agentcentral_setup tool. Returns the hosted MCP endpoint URL, setup guide link, and a sample client configuration snippet.
if (name === "agentcentral_setup") { return { content: [ { type: "text", text: `Hosted MCP endpoint:\n ${HOSTED_URL}\n\n` + `Setup guide:\n ${SETUP_URL}\n\n` + `Add this to your client config:\n` + `{\n "mcpServers": {\n "agentcentral": {\n "url": "${HOSTED_URL}",\n "headers": { "Authorization": "Bearer ac_live_<YOUR_API_KEY>" }\n }\n }\n}`, }, ], isError: false, } - src/index.ts:232-238 (schema)Schema and registration definition for agentcentral_setup. It is defined as a Tool object with no required input properties.
// --- Setup helper --- { name: "agentcentral_setup", description: "Returns the connection details and setup link for the hosted agentcentral MCP server.", inputSchema: { type: "object", properties: {}, additionalProperties: false }, }, - src/index.ts:232-239 (registration)The tool is registered as part of the static 'tools' array at line 39. The array is returned by ListToolsRequestSchema handler at line 251.
// --- Setup helper --- { name: "agentcentral_setup", description: "Returns the connection details and setup link for the hosted agentcentral MCP server.", inputSchema: { type: "object", properties: {}, additionalProperties: false }, }, ]