Skip to main content
Glama
cfollette18

namakan-mcp-crm

by cfollette18

namakan-mcp-crm

모든 CRM을 위한 하나의 MCP 서버입니다. 에이전트는 crm_find_contact / crm_list_deals를 호출합니다. 백엔드가 HubSpot, Salesforce, Dynamics, Pipedrive, Zoho 중 무엇으로 운영되는지는 알 필요가 없습니다.

API 키를 받기 전에도 동작하도록 목(mock) CRM이 포함되어 있습니다. 환경 변수를 설정하기 전까지 쓰기는 비활성화되어 있습니다.

60초 만에 실행하기

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는 세 개의 JSON 블록을 출력합니다: 연락처 조회, 거래 목록, 그리고 실패한 쓰기(기본값은 읽기 전용)입니다. 마지막 것은 의도된 동작입니다.

Related MCP server: Company Records

구조

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]

NAMAKAN_CRM_BACKEND로 백엔드를 교체하세요. 도구 이름은 변경되지 않습니다.

Cursor에 연결하기

.cursor/mcp.json(프로젝트) 또는 ~/.cursor/mcp.json을 생성하거나 편집하세요:

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

Claude Desktop(claude_desktop_config.json)과 Hermes MCP 설정도 동일한 command / env 형식을 사용합니다. 인자를 전달하지 않는 호스트에서도 동작합니다: 서브커맨드 없이 namakan-mcp-crm을 실행하면 serve로 동작합니다.

CLI

명령어

기능

namakan-mcp-crm / serve

MCP stdio(Content-Length 프레이밍)

namakan-mcp-crm tools

통합 도구 목록 표시

namakan-mcp-crm call TOOL key=value

MCP 호스트 없이 도구 하나 호출

namakan-mcp-crm demo

목 조회 + 쓰기 비활성화 오류

도구

도구

읽기/쓰기

인자

crm_find_contact

읽기

query

crm_find_account

읽기

query

crm_list_deals

읽기

account_id?

crm_get_deal

읽기

deal_id

crm_create_deal

쓰기

name, account_id?, amount?, stage?

crm_log_activity

쓰기

note, contact_id?, deal_id?

백엔드

NAMAKAN_CRM_BACKEND

제공 내용

mock (기본값)

번들로 포함된 합성 연락처/거래. 쓰기 영속화를 위한 선택적 NAMAKAN_CRM_STORE=/tmp/crm.json

rest

NAMAKAN_CRM_BASE_URL + 선택적 NAMAKAN_CRM_TOKEN. GET /contacts?query= JSON 응답을 기대합니다

hubspot salesforce dynamics pipedrive zoho

클라이언트 테넌트에 자격 증명이 생길 때까지 스텁입니다. 이 저장소에 토큰을 넣지 마세요

쓰기

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

드라이런은 { "dry_run": true, "would_call": ... }을 반환하며 저장소를 건드리지 않습니다. 프로덕션 쓰기에는 해당 환경 변수 사람의 승인 절차가 필요합니다(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()))

라이선스

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