Skip to main content

Connecting with Claude Code

Complete guide for integrating ProdE with Claude Code through Model Context Protocol (MCP).

Supports streamable-http protocol for MCP integration.

Prerequisites

Before setting up Claude Code integration:

  1. ProdE Account: Active account with repositories in knowledge layer
  2. Claude Code Installation: Latest version of Claude Code CLI installed

Setup Process

Step 1 : Navigate to MCP Settings

  • Go to your ProdE account and find the MCP configuration section

Step 2 : Run the Setup Commands

Claude Code uses CLI commands to add MCP servers. Run the following commands in your terminal.

Codebase Understanding MCP

Option 1: User Scope (Recommended)

Available across all projects on your machine. Can be run from anywhere. Learn more

claude mcp add --transport http --scope user prode https://api.prode.ai/code-parsing/v1/mcp/ \
--header "Authorization: Bearer <YOUR_TOKEN>"

Option 2: Local Scope

Works only within the directory where it is run. Run this command from your project root. Learn more

claude mcp add --transport http prode https://api.prode.ai/code-parsing/v1/mcp/ \
--header "Authorization: Bearer <YOUR_TOKEN>"

Projects MCP

Option 1: User Scope (Recommended)

claude mcp add --transport http --scope user prode-projects https://api.prode.ai/core/api/v1/mcp/projects/mcp/ \
--header "Authorization: Bearer <YOUR_TOKEN>"

Option 2: Local Scope

claude mcp add --transport http prode-projects https://api.prode.ai/core/api/v1/mcp/projects/mcp/ \
--header "Authorization: Bearer <YOUR_TOKEN>"
Token Management

The configuration copied from ProdE platform automatically includes your authentication token. If you need to update an existing token (e.g., if your current token stops working), you can copy the new token from the MCP Settings screen and re-run the commands.

Available Tools

Once connected, Claude Code will have access to tools from both MCP servers:


Cursor Setup | VS Code Setup | Windsurf Setup | Back to MCP Overview