MCP Server Integration Guide

Model Context Protocol

Supercharge your IDE with
DocuVerse AI Tools

Connect DocuVerse's analysis engine, impact simulator, and AI-narrated walkthroughs directly into your favorite AI-powered IDEs and desktop applications using the open standard Model Context Protocol (MCP).

Read Guide

1. Build Server

Clone the server locally and run `npm install && npm run build`.

2. Connect IDE

Add the absolute path of `dist/index.js` to your IDE configuration.

3. Start Asking

Ask the AI internally to 'analyze impact', 'git clone my repo', or 'explain file'.

Step-by-Step Setup

Claude Desktop provides built-in support for MCP servers. To connect the DocuVerse server, modify your global Claude config file.

1. Locate Config File

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

2. Add Server Configuration

{
  "mcpServers": {
    "docuverse": {
      "command": "node",
      "args": ["/absolute/path/to/logorhythms/mcp-server/dist/index.js"],
      "env": {
        "DOCUVERSE_JWT_TOKEN": "<YOUR_JWT_TOKEN_HERE>",
        "DOCUVERSE_API_URL": "https://logorhythms.in/api"
      }
    }
  }
}

Replace /absolute/path... with the real path to the MCP build folder on your machine, and paste your JWT Session Token from the DocuVerse dashboard. Restart Claude to apply changes.

How an AI uses this locally

>"What repositories do I have connected to DocuVerse?"
list_repositories

The AI looks up your DocuVerse account and sees your active codebase index.

>"Clone the GitForge repo into this empty folder."
get_repository_clone_url

Fetches the clone URL. The AI (like Cursor Composer) then runs `git clone` natively for you.

>"Analyze the impact of modifying auth.py."
analyze_file_impact

Instead of guessing, the AI queries the DocuVerse fast graph API to see the actual dependency blast radius.

>"Generate an audio walkthrough for backend/api.ts"
generate_walkthrough

The AI triggers the Bedrock TTS generator. It then hands you a Logorhythms playback URL directly in the chat to listen to!