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
| Name | Required | Description | Default |
|---|---|---|---|
| agentType | Yes | Agent type |
Implementation Reference
- src/tools/agents.ts:86-101 (handler)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 }; } }, );