Without the MCP server, DocPro doesn't have legs.

Getting Started.

Your AI team lives in your editor. The MCP server is the bridge that connects them to your workspace. This guide walks you through every step, from prerequisites to your first session.

Prerequisites.

Before you begin, make sure you have the following installed on your machine.

Node.js 18+
Required to run the MCP server. Download from nodejs.org.
VS Code
Version 1.93 or later. The DocPro extension runs here.
Claude Code CLI
The AI runtime that powers your team sessions. Requires an Anthropic API key or Max plan.
Supported OS
Windows 10/11, macOS 12+, or Linux (Ubuntu 20.04+, Debian 11+).
Note: The automated installer handles Node.js and Claude Code for you on Windows. On macOS and Linux, install them first, then proceed to Step 2 below.

MCP Server Installation.

The MCP server (docpro-mcp-server) is the core connection between your editor and the DocPro platform. Without it, your team cannot receive instructions, access tools, or respond in Claude Code. This is the most important step.

This is required. The VS Code sidebar extension provides the UI, but the MCP server is what gives your team the ability to act. Skip this and nothing works.
1

Get Your API Key

Log into DocPro and go to Settings. Click the eye icon next to IDE API Key to reveal it, then copy it. You will need this in the next step.

Your key looks like: dp_a1b2c3d4...

Do not see an API key? Your administrator needs to enable IDE access for your account.

2

Run the Installer

Open PowerShell as Administrator and run this single command:

irm https://anthropic.docpro.cloud/api/ide/download/installer | iex

The installer downloads the MCP server, configures Claude Code, and installs the VS Code sidebar extension. When prompted, paste the API key from Step 1.

macOS / Linux: Ensure Node.js 18+ and Claude Code CLI are installed first. Then clone the MCP server manually and configure it (see Manual Installation below).
3

Restart VS Code

Close VS Code completely and reopen it. This is required. The MCP server connection and extension will not load until you restart.

After restart, look for the DocPro cube icon in the Activity Bar on the far left. Click it to open the sidebar.

Icon not showing? Press Ctrl+Shift+P (or Cmd+Shift+P on macOS), type Reload Window, and press Enter.
4

Connect the Sidebar

Click the DocPro cube icon to open the sidebar. Scroll to Settings and enter:

  • Server URL: https://anthropic.docpro.cloud
  • API Key: your dp_... key from Step 1

Click Save. The status indicator at the top of the sidebar turns green when connected.

5

Verify the MCP Server

Open a terminal in VS Code and run:

claude mcp list

You should see docpro-proxy in the list. This confirms the MCP server is registered and ready.

Success. If docpro-proxy appears in the list and the sidebar status is green, your installation is complete. You are ready to start a session.

Manual Installation (macOS / Linux)

If you are not on Windows or prefer to install manually, follow these steps:

  1. Clone or download the docpro-mcp-server package to your machine
  2. Run npm install and npm run build in the package directory
  3. Add the MCP server to your Claude Code configuration at ~/.claude.json:
{
  "mcpServers": {
    "docpro-proxy": {
      "type": "stdio",
      "command": "node",
      "args": ["/path/to/docpro-mcp-server/dist/index.js"],
      "env": {
        "DOCPRO_API_URL": "https://anthropic.docpro.cloud",
        "DOCPRO_API_KEY": "dp_YOUR_KEY_HERE"
      }
    }
  }
}

Replace the path and key with your actual values. Then restart VS Code.

VS Code Extension.

The DocPro sidebar extension provides the interface for starting sessions, calling your team, managing recordings, and tracking project progress. The automated installer installs it for you, but you can also install it manually.

Install from the Marketplace

  1. Open VS Code and go to the Extensions panel (Ctrl+Shift+X)
  2. Search for DocPro (publisher: DocPro)
  3. Click Install
  4. Restart VS Code after installation

The extension is published as DocPro.docpro-sidebar.

Configuration

After installation, open the DocPro sidebar (cube icon in the Activity Bar) and configure:

  • Server URLhttps://anthropic.docpro.cloud
  • API Key — your dp_... key from the DocPro settings page

Click Save. A green status indicator confirms the connection.

First Session Walkthrough

Once connected, open a project folder in VS Code and click Start Session in the sidebar. Choose a session type, write a pitch or describe your issue, and submit. Claude Code will open and your team will start responding directly in the chat panel.

First run: Claude Code may ask you to trust the docpro-proxy MCP server. Click Allow. This only happens once.

Troubleshooting.

Common issues and how to resolve them.

MCP tools not available / team not responding. The MCP server may not be registered. Run claude mcp list in your terminal. If docpro-proxy is not in the list, re-run the installer:
irm https://anthropic.docpro.cloud/api/ide/download/installer | iex

The installer is safe to run multiple times. It will replace and reconfigure everything cleanly.

Authentication failed. Your API key may be expired or disabled. Go to Settings in DocPro and regenerate your IDE API Key. Then update the key in the VS Code sidebar settings and restart.
Cannot reach the server. Verify you can open https://anthropic.docpro.cloud in your browser. If you are behind a VPN or corporate firewall, ensure the domain is reachable.
Sidebar icon not appearing. Press Ctrl+Shift+P (or Cmd+Shift+P on macOS), type Reload Window, and press Enter. If it still does not appear, uninstall and reinstall the extension from the VS Code Marketplace.
Node.js version too old. The MCP server requires Node.js 18 or later. Run node --version to check. Download the latest LTS version from nodejs.org.
Need to update or repair. Run the installer again. It handles updates and repairs automatically. Your settings are preserved.

Quick Start Guide.

Once everything is installed, here is how to get productive immediately.

Creating Your First Session

Open a project folder in VS Code. In the DocPro sidebar, fill out the session form:

  • Session Type — choose from the dropdown
  • Pitch / Issue — describe what you need (this is the only required field)
  • Context — optionally paste code snippets, error logs, or background info
  • Docs URL — optionally link to reference documentation the team should read

Click Start Session. The team responds directly in the Claude Code chat panel.

Meeting the Team

DocPro comes with a team of AI specialists who work together across every session:

  • Carl — Lead architect. Scopes projects, sets milestones, makes structural decisions.
  • Diana — Design and frontend. Handles UI, styling, and visual presentations.
  • Anthony — Backend and integrations. APIs, databases, infrastructure.
  • Abish — Research and analysis. Deep dives, documentation, quality assurance.

The team remembers your preferences, your project context, and your feedback across sessions. The more you work with them, the more aligned they become with how you think.

Understanding Session Types

Development Meeting

Scope a new project with the full team. They will break it into milestones and start building.

Milestone

Execute a specific milestone. The team picks up where the last session left off.

Troubleshooting

Debug a problem. Describe the issue, paste logs, and the team will diagnose and fix.

You are ready. Start a session, describe what you need, and let the team get to work. They will scope it, plan it, and build it — autonomously.