Skip to main content
Glama
sharozdawa

ai-visibility-mcp

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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),
            },
          ],
        };
      }
    );

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/sharozdawa/ai-visibility'

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