victorbenazzi/ploomes-mcp-server
Unofficial Model Context Protocol server that connects AI agents to the Ploomes CRM REST API
Platform-specific configuration:
{
"mcpServers": {
"ploomes-mcp-server": {
"command": "npx",
"args": [
"-y",
"ploomes-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Unofficial Model Context Protocol server that connects AI agents to the Ploomes CRM REST API. Exposes 56 tools covering contacts, deals, tasks, pipelines, interactions, quotes, orders, products, fields, users, account management, and lookup/reference data.
Works with any MCP-compatible client: Claude Desktop, Claude Code, Cursor, VS Code (Copilot), and others.
---
npx ploomes-mcp-server initThe interactive wizard will:
That's it. No cloning, no building, no manual config editing.
fetch)---
If you prefer to configure manually, add this to your MCP client config:
File: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
{
"mcpServers": {
"ploomes": {
"command": "npx",
"args": ["-y", "ploomes-mcp-server"],
"env": {
"PLOOMES_USER_KEY": "your-key-here"
}
}
}
}Project-level .mcp.json:
{
"mcpServers": {
"ploomes": {
"command": "npx",
"args": ["-y", "ploomes-mcp-server"],
"env": {
"PLOOMES_USER_KEY": "your-key-here"
}
}
}
}Or via CLI:
claude mcp add ploomes -- npx -y ploomes-mcp-server -e PLOOMES_USER_KEY=your-key-hereFile: ~/.cursor/mcp.json
{
"mcpServers": {
"ploomes": {
"command": "npx",
"args": ["-y", "ploomes-mcp-server"],
"env": {
"PLOOMES_USER_KEY": "your-key-here"
}
}
}
}`
Loading reviews...