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.
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.
Before you begin, make sure you have the following installed on your machine.
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.
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.
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.
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.
Ctrl+Shift+P (or Cmd+Shift+P on macOS), type Reload Window, and press Enter.
Click the DocPro cube icon to open the sidebar. Scroll to Settings and enter:
https://anthropic.docpro.clouddp_... key from Step 1Click Save. The status indicator at the top of the sidebar turns green when connected.
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.
docpro-proxy appears in the list and the sidebar status is green, your installation is complete. You are ready to start a session.
If you are not on Windows or prefer to install manually, follow these steps:
docpro-mcp-server package to your machinenpm install and npm run build in the package directory~/.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.
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.
Ctrl+Shift+X)The extension is published as DocPro.docpro-sidebar.
After installation, open the DocPro sidebar (cube icon in the Activity Bar) and configure:
https://anthropic.docpro.clouddp_... key from the DocPro settings pageClick Save. A green status indicator confirms the connection.
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.
docpro-proxy MCP server. Click Allow. This only happens once.
Common issues and how to resolve them.
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.
https://anthropic.docpro.cloud in your browser. If you are behind a VPN or corporate firewall, ensure the domain is reachable.
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 --version to check. Download the latest LTS version from nodejs.org.
Once everything is installed, here is how to get productive immediately.
Open a project folder in VS Code. In the DocPro sidebar, fill out the session form:
Click Start Session. The team responds directly in the Claude Code chat panel.
DocPro comes with a team of AI specialists who work together across every session:
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.
Scope a new project with the full team. They will break it into milestones and start building.
Execute a specific milestone. The team picks up where the last session left off.
Debug a problem. Describe the issue, paste logs, and the team will diagnose and fix.