Skip to main content
Glama
cfollette18

namakan-mcp-crm

by cfollette18

namakan-mcp-crm

One MCP server for every CRM. Agents call crm_find_contact / crm_list_deals — they never learn whether the plant runs HubSpot, Salesforce, Dynamics, Pipedrive, or Zoho.

Ships with a mock CRM so it works before anyone hands you an API key. Writes are off until you set an env var.

Run in 60 seconds

pip install git+https://github.com/cfollette18/namakan-mcp-crm.git
namakan-mcp-crm demo
namakan-mcp-crm tools
namakan-mcp-crm call crm_find_contact query=alex

demo prints three JSON blobs: a contact lookup, a deal list, and a failed write (read-only default). That last one is intentional.

Related MCP server: Company Records

How it fits

flowchart LR
  Agent[Hermes / Cursor / Claude Desktop] -->|MCP stdio| Server[namakan-mcp-crm]
  Server --> Tools[crm_find_contact etc.]
  Tools --> Mock[mock backend]
  Tools --> Rest[generic REST]
  Tools --> Vendor[HubSpot / Salesforce / ... adapter]

Swap the backend with NAMAKAN_CRM_BACKEND. The tool names do not change.

Wire it into Cursor

Create or edit .cursor/mcp.json (project) or ~/.cursor/mcp.json:

{
  "mcpServers": {
    "namakan-crm": {
      "command": "namakan-mcp-crm",
      "args": ["serve"],
      "env": {
        "NAMAKAN_CRM_BACKEND": "mock"
      }
    }
  }
}

Claude Desktop (claude_desktop_config.json) and Hermes MCP config use the same command / env shape. Hosts that pass no args also work: namakan-mcp-crm with no subcommand is serve.

CLI

Command

What it does

namakan-mcp-crm / serve

MCP stdio (Content-Length framing)

namakan-mcp-crm tools

List the unified tools

namakan-mcp-crm call TOOL key=value

Invoke one tool without an MCP host

namakan-mcp-crm demo

Mock lookups + the writes-disabled error

Tools

Tool

Read/write

Arguments

crm_find_contact

read

query

crm_find_account

read

query

crm_list_deals

read

account_id?

crm_get_deal

read

deal_id

crm_create_deal

write

name, account_id?, amount?, stage?

crm_log_activity

write

note, contact_id?, deal_id?

Backends

NAMAKAN_CRM_BACKEND

What you get

mock (default)

Bundled synthetic contacts/deals. Optional NAMAKAN_CRM_STORE=/tmp/crm.json to persist writes

rest

NAMAKAN_CRM_BASE_URL + optional NAMAKAN_CRM_TOKEN. Expects GET /contacts?query= JSON

hubspot salesforce dynamics pipedrive zoho

Stub until credentials exist in the client tenant. Do not put tokens in this repo

Writes

NAMAKAN_MCP_ALLOW_WRITES=1 NAMAKAN_MCP_DRY_RUN=1 namakan-mcp-crm call crm_create_deal name=Test

Dry-run returns { "dry_run": true, "would_call": ... } and does not touch the store. Production writes need that env and a human approval path (Namakan: ciso).

Python

from namakan_mcp_crm import handle
from namakan_mcp_crm.backends import MockCrm

print(handle("crm_find_contact", {"query": "alex"}, backend=MockCrm()))

License

MIT. Copyright (c) 2026 Namakan AI Engineering.

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to perform CRM operations like creating contacts, managing deals, and updating leads through natural language using the Model Context Protocol.
    4
  • F
    license
    Not graded
    quality
    C
    maintenance
    Exposes a fictional B2B CRM database (companies, contacts, deals) as callable MCP tools, enabling AI agents to answer natural-language questions about company records, contacts, and pipeline data.
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to interact with Bitrix24 CRM through standardized MCP tools, including searching and managing contacts, deals, leads, tasks, and replying in chats.
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Enables AI assistants to manage RogerRoger CRM data including people, organizations, lists, tags, and tasks through standardized MCP tools.
    22
    13
    MIT

View all related MCP servers

Related MCP Connectors

  • LeadConnector / GoHighLevel MCP Pack — wraps the GoHighLevel CRM for AI agents.

  • Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.

  • Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cfollette18/namakan-mcp-crm'

If you have feedback or need assistance with the MCP directory API, please join our Discord server