home / mcp / ai collaboration mcp server
This is a very basic MCP Server for VS Code to use with Copilot to enhance Copilot knowledge and ability.
Configuration
View docs{
"mcpServers": {
"hurryupmitch-ai-collaboration-mcp-server": {
"command": "node",
"args": [
"/path/to/ai-collaboration-mcp-server/build/index.js"
],
"env": {
"OLLAMA_MODEL": "llama3.2:latest",
"GEMINI_API_KEY": "YOUR_KEY_HERE",
"OPENAI_API_KEY": "YOUR_KEY_HERE",
"OLLAMA_BASE_URL": "http://localhost:11434",
"ANTHROPIC_API_KEY": "YOUR_KEY_HERE"
}
}
}
}The AI Collaboration MCP Server provides a focused set of tools to streamline AI-assisted development inside your editor. It maintains workspace-specific context, automatically injects project details, and lets you query multiple AI providers with centralized tooling. Use it to get expert AI guidance, compare perspectives, and run actions directly from your IDE.
You interact with the MCP server through your MCP-enabled editor client. Start by configuring a local or workspace-specific MCP server entry, then use the four core tools to manage your project context and AI interactions.
Prerequisites: Node.js 18+ and a editor with MCP support. You also need API keys for the AI providers you plan to use.
Configuration notes, security considerations, troubleshooting tips, and development commands are detailed below for a smooth setup and ongoing maintenance.
Keep API keys secure in your MCP configuration. Conversation history is stored locally on your machine. If you encounter startup or authentication issues, verify your configuration, review the MCP server logs, and ensure your editor extension is up to date.
Set the current workspace directory to enable project-specific conversation history and automatic context injection for that project.
Ask for expert guidance from a specific AI provider with full project context.
Obtain perspectives from multiple AI providers on a given topic to compare approaches.
Force tool execution with explicit commands when needed.