All MCP Servers
Complete inventory as of February 23, 2026.
Active Servers
Google Workspace
| Server |
Package |
Scope |
| gmail |
@gongrzhe/server-gmail-autoauth-mcp |
User |
| google-drive |
@piotr-agier/google-drive-mcp |
User |
| google-calendar |
@cocal/google-calendar-mcp |
User |
See google-workspace.md for full details.
| Server |
Package/URL |
Scope |
Notes |
| chrome-devtools |
chrome-devtools-mcp@latest |
User |
Requires Chrome running with --remote-debugging-port=9222 |
| figma-desktop |
http://127.0.0.1:3845/mcp |
User |
HTTP type, requires Figma desktop app running with Dev Mode MCP |
Analytics & CRM
| Server |
Package |
Scope |
Notes |
| hubspot |
@hubspot/mcp-server |
User |
Uses private app access token |
| google-analytics |
Custom Python server |
User |
Uses service account at ~/.config/gcloud/ga4-service-account.json, cwd: ~/.claude/skills/ga4-mcp |
Communication
| Server |
Type |
Scope |
Notes |
| slack |
HTTP + Bearer token |
User |
See slack.md. Static xoxp- token — no mcp-remote |
Infrastructure
| Server |
Command |
Scope |
Notes |
| MCP_DOCKER |
docker mcp gateway run |
User |
Frequently fails to connect — Docker Desktop must be running |
Servers in ~/.claude/mcp.json (secondary config)
These are in the older ~/.claude/mcp.json file. They may or may not load depending on Claude Code version:
| Server |
Type |
Notes |
| figma-dev-mode-mcp-server |
SSE |
Likely duplicate of figma-desktop (same port 3845) |
| cloudflare-observability |
stdio/npx |
Uses mcp-remote |
| cloudflare-dns-analytics |
stdio/npx |
Uses mcp-remote |
| cloudflare-graphql |
stdio/npx |
Uses mcp-remote |
| cloudflare-audit-logs |
stdio/npx |
Uses mcp-remote |
Stale Config (cleaned up Feb 23, 2026)
The ~/.claude/settings.json had an mcpServers block that Claude Code never reads. These entries were removed:
- chrome-devtools (moved to proper registration)
- google-analytics (moved to proper registration)
- hubspot (was already properly registered, removed duplicate)
- google-calendar (moved to proper registration)
How to Add a New Server
# Simple npx server
claude mcp add -s user -e KEY=value -- server-name npx -y @package/name
# Complex config (JSON)
claude mcp add-json server-name '{"command":"...","args":[...],"env":{"KEY":"value"}}' -s user
# HTTP/SSE server
claude mcp add --transport http server-name https://url/mcp
Always use -s user for servers you want available across all projects.