drio
Open app

MCP Reporter

Source

mcp-reporter is a streamlined utility that generates comprehensive capability reports for Model Context Protocol servers, empowering developers to easily understand available functionality across their MCP servers ecosystem for both documentation and integration into other tools.

Catalog onlyCatalog onlySTDIO

Overview

MCP Reporter is a utility that generates comprehensive capability reports for Model Context Protocol (MCP) servers, helping developers understand the available functionality across their MCP server ecosystem for documentation and integration into other tools.

To use MCP Reporter, install it via npm, configure the MCP servers in a JSON file, and run the command line interface to generate reports.

  • Server Discovery: Automatically connects to all enabled MCP servers. - Capability Analysis: Extracts tools, resources, and resource templates. - Markdown Report Generation: Produces well-organized documentation. - Progress Monitoring: Provides real-time feedback during execution.
  1. Generating documentation for MCP server capabilities.
  2. Analyzing available tools and resources across multiple MCP servers.
  3. Integrating MCP server functionality into other applications or tools.

Add to your AI client

Use these steps to connect MCP Reporter in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-reporter-cyanheads": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-reporter-cyanheads": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-reporter-cyanheads": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-reporter-cyanheads": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-reporter-cyanheads": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-reporter-cyanheads": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-reporter-cyanheads"
      ]
    }
  }
}

FAQ

Can MCP Reporter connect to multiple MCP servers?

Yes! MCP Reporter can automatically discover and connect to all enabled MCP servers.

Is MCP Reporter easy to install?

Yes! Installation is straightforward using npm, and detailed instructions are provided in the documentation.

What format does the report generated by MCP Reporter take?

The report is generated in Markdown format, making it easy to read and integrate into other documentation.