Skip to main content
Glama

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

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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,
      }
  • 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 },
      },
    ]
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It states the tool returns data (connection details), implying a read-only operation. However, it does not mention any authentication requirements or whether the setup link expires.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single clear sentence with all essential information. No wasted words, directly states what the tool does.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Description is complete for a simple setup tool with no parameters and no output schema. It could mention if the setup link has a time limit, but overall adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so schema coverage is 100%. Baseline for 0 parameters is 4. Description adds no parameter info, but none needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it returns connection details and setup link for the hosted agentcentral MCP server. This is a specific verb-resource combination that distinguishes it from sibling tools, which are all about advertising data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives, but its unique purpose (server setup) makes usage obvious. Implicitly, it's the first tool to call to get connection info.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/agentcentral-to/agent-central-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server