Sign In

@coherenceos/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coherenceos/mcp-server

MCP server exposing the Coherence platform (CRM records, collab docs, AI agents) as tools for Claude Desktop, Cursor, Cline, and other MCP-compatible clients.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
109
-48.34%
Maintainers
1
Weekly downloads
 
Created
Source

@coherenceos/mcp-server

MCP (Model Context Protocol) server that exposes Coherence platform APIs as tools for Claude, Cursor, Cline, and other MCP-compatible clients.

Quickstart

1. Create an API key

In Coherence, go to Settings → API Keys → Create new key. Copy the sk_live_… value — it's only shown once.

2. Add to your MCP client

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "coherence": {
      "command": "npx",
      "args": ["-y", "@coherenceos/mcp-server"],
      "env": {
        "COHERENCE_API_URL": "https://api.getcoherence.io/v1",
        "COHERENCE_API_TOKEN": "sk_live_..."
      }
    }
  }
}

Cursor / Cline / Continue / Windsurf: same JSON, dropped into each tool's MCP settings file.

Local development — point at your gateway:

"env": {
  "COHERENCE_API_URL": "http://localhost:4000",
  "COHERENCE_API_TOKEN": "sk_live_..."
}

Available Tools

ToolDescription
list_modulesList all CRM modules in the workspace
list_module_fieldsList fields defined on a module
list_recordsList records with search/pagination
get_recordGet a single record by ID
create_recordCreate a new record
update_recordUpdate a record's fields
delete_recordSoft-delete a record
list_collab_docsList Collab documents
create_collab_docCreate a new document
get_collab_docGet document metadata
get_collab_doc_textGet document plain-text content
list_agentsList AI agents
create_agent_taskAssign a task to an agent
list_agent_tasksList agent tasks (filterable by status)
add_commentAdd a comment to a record
workspace_overviewGet workspace summary stats

Environment Variables

VariableRequiredDefaultDescription
COHERENCE_API_TOKENYesAPI key (sk_live_…) from your Coherence workspace
COHERENCE_API_URLNohttps://api.getcoherence.io/v1API base URL

Hosted MCP (no install)

Prefer a hosted endpoint? Use Coherence's Streamable HTTP MCP server directly:

https://mcp.getcoherence.io

Authenticate with the same sk_live_… API key. Supported in Claude.ai connectors, ChatGPT, and any MCP client that speaks HTTP/SSE.

Scopes

When you create an API key, you choose which scopes it can use:

  • records:read, records:write
  • collab:read, collab:write
  • agents:read, agents:write
  • workspace:read

A key with no scopes selected has full access for the creating user's roles.

Local development (no published build)

"command": "npx",
"args": ["tsx", "packages/mcp-server/src/index.ts"]

Keywords

mcp

FAQs

Package last updated on 12 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts