Skip to main content
Glama

agent-manifest

Retrieve manifest details including input fields, capabilities, and billing information for specific AI agent types in the LLM Conveyors platform.

Instructions

Get the manifest (input fields, capabilities, billing) for an agent type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentTypeYesAgent type

Implementation Reference

  • The handler for the 'agent-manifest' MCP tool, which calls `client.agents.getManifest(params.agentType)` to retrieve the manifest.
    server.tool(
      "agent-manifest",
      "Get the manifest (input fields, capabilities, billing) for an agent type.",
      {
        agentType: z.enum(["job-hunter", "b2b-sales"]).describe("Agent type"),
      },
      async (params) => {
        try {
          const result = await client.agents.getManifest(params.agentType);
          return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] };
        } catch (err) {
          const message = err instanceof Error ? err.message : String(err);
          return { content: [{ type: "text", text: `Error: ${message}` }], isError: true };
        }
      },
    );

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/ebenezer-isaac/llmconveyors-mcp'

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