IDE Setup Guide
Connect Polydev to your favorite coding IDE or editor. Get multi-model AI perspectives, CLI tool integration, and conversation memory - all through the Model Context Protocol (MCP).
Quick Install
Install the MCP package globally
npm install -g polydev-aiClaude Code CLI
Anthropic's official AI-powered command-line tool for coding
Install Claude Code
If you haven't installed Claude Code yet, install it via npm:
npm install -g @anthropic-ai/claude-codeAdd Polydev MCP Server
Use the built-in command to add Polydev as an MCP server:
claude mcp add polydev --scope user -- npx --yes --package=polydev-ai@latest -- polydev-stdioScope Options
--scope user- Available in all your projects--scope project- Only this project (creates .mcp.json)
Set Your Token
Set your Polydev token as an environment variable:
macOS / Linux:
# Add to your ~/.zshrc or ~/.bashrc
export POLYDEV_USER_TOKEN="pd_your_token_here"Windows (PowerShell):
$env:POLYDEV_USER_TOKEN = "pd_your_token_here"Don't have a token? Generate one in your dashboard
Verify Installation
Check that Polydev is properly configured:
claude mcp listYou should see polydev in the list of available servers.
Test it out!
Start Claude Code and ask: "Can you get perspectives from multiple AI models about the best way to structure a React component?"
Configuration File
~/.claude.json or .mcp.json (project)
{
"mcpServers": {
"polydev": {
"command": "npx",
"args": ["--yes", "--package=polydev-ai@latest", "--", "polydev-stdio"],
"env": {
"POLYDEV_USER_TOKEN": "pd_your_token_here"
}
}
}
}Available Tools
get_perspectives
Get AI perspectives from multiple models
force_cli_detection
Detect local CLI tools status
send_cli_prompt
Send prompts to local CLI tools
extract_memory
Extract memory from conversations
Supported AI Models
OpenAI
gpt-5.2gpt-5.2-minigpt-5.2-nano
Anthropic
claude-opus-4.5claude-sonnet-4.5claude-haiku-4.5
gemini-3-progemini-3-flash
xAI
grok-4.1grok-4.1-mini
Next Steps
Configure API Keys
Add your OpenAI, Anthropic, Google, and other provider API keys.
Go to SettingsSet Preferences
Configure which models to use for perspectives and your default settings.
Set PreferencesRead Full Docs
Learn about all features including API reference and advanced configuration.
View Documentation