The Squad MCP Server allows you to integrate Squad—an AI-powered product discovery and strategy platform—with any MCP-aware large language model application. It enables you to research, plan, and ideate products in a conversational flow without leaving your editor or chat window.
Before using the MCP server, you'll need to obtain an API key:
Download the latest binary for your operating system from the GitHub releases page and run it directly:
# Windows
squad-mcp.exe
# macOS / Linux — make the file executable first
chmod +x squad-mcp
./squad-mcp
Pass environment variables like this:
SQUAD_API_KEY=<your-key> SQUAD_ENV=production ./squad-mcp
# Build the image (once)
docker build -t mcp/meet-squad -f Dockerfile .
# Run the server on stdio
docker run --rm -i \
-e SQUAD_API_KEY=<your-key> \
mcp/meet-squad
git clone https://github.com/the-basilisk-ai/squad-mcp.git
cd squad-mcp
npm install
npm run build
node dist/index.js
The @squadai/tools
package allows you to interact with the Squad API programmatically:
npm install @squadai/tools
# or
yarn add @squadai/tools
# or
pnpm add @squadai/tools
Example usage with Vercel AI:
import { generateText, tool } from "ai";
import { tools as squadTools } from "@squadai/tools";
const result = await generateText({
model: yourModel,
tools: squadTools({
jwt: "JWT",
orgId: "orgId",
workspaceId: "workspaceId",
}),
prompt: "What is the weather in San Francisco?",
});
Add a mcpServers
entry to your client's configuration (e.g., claude_desktop_config.json or Cursor).
{
"mcpServers": {
"meet-squad": {
"command": "C:/path/to/squad-mcp.exe",
"env": {
"SQUAD_API_KEY": "YOUR_API_KEY_HERE",
},
},
},
}
{
"mcpServers": {
"meet-squad": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "SQUAD_API_KEY", "mcp/meet-squad"],
"env": {
"SQUAD_API_KEY": "YOUR_API_KEY_HERE",
},
},
},
}
After restarting your client, you should see the Squad tools (hammer 🔨 icon) listed and ready for use.
Squad MCP Server provides the following tool prefixes:
Variable | Required | Default | Description |
---|---|---|---|
SQUAD_API_KEY |
Yes | – | Personal access token generated in Squad |
SQUAD_ENV |
No | production |
Override the Squad API base URL (staging , development , etc.) |
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "meet-squad" '{"command":"C:/path/to/squad-mcp.exe","env":{"SQUAD_API_KEY":"YOUR_API_KEY_HERE"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"meet-squad": {
"command": "C:/path/to/squad-mcp.exe",
"env": {
"SQUAD_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"meet-squad": {
"command": "C:/path/to/squad-mcp.exe",
"env": {
"SQUAD_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect