list_platforms
Discover supported AI platforms and understand how each sources and displays brand information for visibility tracking.
Instructions
List all supported AI platforms with details about how each sources and presents brand information.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp-server/src/index.ts:1087-1114 (handler)The list_platforms tool handler which returns a list of tracked AI platforms.
// Tool: list_platforms server.tool( "list_platforms", "List all supported AI platforms with details about how each sources and presents brand information.", {}, async () => { const output = { platforms: PLATFORMS.map((p) => ({ id: p.id, name: p.name, company: p.company, description: p.description, sourceMethod: p.sourceMethod, })), totalPlatforms: PLATFORMS.length, note: "These are the AI platforms tracked by the AI Visibility tool. Each platform has different methods for sourcing brand information, which affects visibility strategies.", }; return { content: [ { type: "text" as const, text: JSON.stringify(output, null, 2), }, ], }; } );