What is the Pickle MCP server?
Free, local MCP server that audits ClickUp, Slack & Teams for work that slipped through.
How to install Pickle
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
CLICKUP_API_KEYsecretYour own ClickUp personal API token (starts with pk_). Optional — set it to enable the 9 ClickUp audit patterns.
SLACK_TOKENsecretYour own Slack user OAuth token (starts with xoxp-). Optional — set it to enable the cross-tool Slack patterns.
TEAMS_TOKENsecretYour own Microsoft Graph access token. Optional — set it to enable the Microsoft Teams patterns.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pickle": {
"command": "npx",
"args": [
"-y",
"pickle-mcp"
],
"env": {
"CLICKUP_API_KEY": "<YOUR_CLICKUP_API_KEY>",
"SLACK_TOKEN": "<YOUR_SLACK_TOKEN>",
"TEAMS_TOKEN": "<YOUR_TEAMS_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"pickle": {
"command": "npx",
"args": [
"-y",
"pickle-mcp"
],
"env": {
"CLICKUP_API_KEY": "<YOUR_CLICKUP_API_KEY>",
"SLACK_TOKEN": "<YOUR_SLACK_TOKEN>",
"TEAMS_TOKEN": "<YOUR_TEAMS_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pickle": {
"command": "npx",
"args": [
"-y",
"pickle-mcp"
],
"env": {
"CLICKUP_API_KEY": "<YOUR_CLICKUP_API_KEY>",
"SLACK_TOKEN": "<YOUR_SLACK_TOKEN>",
"TEAMS_TOKEN": "<YOUR_TEAMS_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"pickle": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pickle-mcp"
],
"env": {
"CLICKUP_API_KEY": "<YOUR_CLICKUP_API_KEY>",
"SLACK_TOKEN": "<YOUR_SLACK_TOKEN>",
"TEAMS_TOKEN": "<YOUR_TEAMS_TOKEN>"
}
}
}
}Claude Code
claude mcp add pickle --env CLICKUP_API_KEY=<YOUR_CLICKUP_API_KEY> --env SLACK_TOKEN=<YOUR_SLACK_TOKEN> --env TEAMS_TOKEN=<YOUR_TEAMS_TOKEN> -- npx -y pickle-mcpRelated MCP servers
Self-hosted technical SEO audit MCP. 50+ checks, WAF detection, ephemeral. Built on LibreCrawl.
22
View repository →Python
MIT