MCP Server
io.github.spranab/brainstorm-mcp MCP Server
io.github.spranab/brainstorm-mcp
What is the io.github.spranab/brainstorm-mcp MCP server?
Multi-model AI brainstorming debates with code review and quick perspectives
How to install io.github.spranab/brainstorm-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
OPENAI_API_KEYsecretOpenAI API key for GPT models (optional — not needed in hosted mode)
GEMINI_API_KEYsecretGoogle Gemini API key (optional)
DEEPSEEK_API_KEYsecretDeepSeek API key (optional)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"brainstorm-mcp": {
"command": "npx",
"args": [
"-y",
"brainstorm-mcp"
],
"env": {
"OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>",
"DEEPSEEK_API_KEY": "<YOUR_DEEPSEEK_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"brainstorm-mcp": {
"command": "npx",
"args": [
"-y",
"brainstorm-mcp"
],
"env": {
"OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>",
"DEEPSEEK_API_KEY": "<YOUR_DEEPSEEK_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"brainstorm-mcp": {
"command": "npx",
"args": [
"-y",
"brainstorm-mcp"
],
"env": {
"OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>",
"DEEPSEEK_API_KEY": "<YOUR_DEEPSEEK_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"brainstorm-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"brainstorm-mcp"
],
"env": {
"OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>",
"DEEPSEEK_API_KEY": "<YOUR_DEEPSEEK_API_KEY>"
}
}
}
}Claude Code
claude mcp add brainstorm-mcp --env OPENAI_API_KEY=<YOUR_OPENAI_API_KEY> --env GEMINI_API_KEY=<YOUR_GEMINI_API_KEY> --env DEEPSEEK_API_KEY=<YOUR_DEEPSEEK_API_KEY> -- npx -y brainstorm-mcpRelated MCP servers
Jira-like project tracker for AI agents with SQLite, full task hierarchy, and dashboard
View repository →