MCP Server - Relaticle Documentation                 [ Skip to main content ](#main-content)= 768) mobileMenu = false"&gt;  [                                                         ](https://relaticle.com)

  [ Features ](https://relaticle.com/#features) [ Pricing ](https://relaticle.com/pricing) [ Documentation ](https://relaticle.com/docs) [  Discord  ](https://relaticle.com/discord)  [ Sign In ](https://relaticle.com/login) [ Start for free ](https://relaticle.com/register)

  [                                                         ](https://relaticle.com)

  [ Features ](https://relaticle.com/#features) [ Pricing ](https://relaticle.com/pricing) [ Contact ](https://relaticle.com/contact) [ Docs ](https://relaticle.com/docs)

  [ Sign In ](https://relaticle.com/login) [ Start for free ](https://relaticle.com/register)

    Documentation
-----------------

 [ Getting Started ](https://relaticle.com/docs/getting-started) [ Import Guide ](https://relaticle.com/docs/import) [ Developer Guide ](https://relaticle.com/docs/developer) [ Self-Hosting Guide ](https://relaticle.com/docs/self-hosting) [ MCP Server ](https://relaticle.com/docs/mcp) [ API Reference ](https://relaticle.com/docs/api)

  [\#](#mcp-server "Permalink")MCP Server
=======================================

MCP (Model Context Protocol) lets AI assistants like Claude work directly with your Relaticle CRM data. Instead of copy-pasting between tools, your AI assistant can list companies, create tasks, update contacts, and more -- all from a natural conversation.

---

[\#](#what-you-can-do "Permalink")What You Can Do
-------------------------------------------------

With the Relaticle MCP server, your AI assistant can:

- **List and search** companies, people, opportunities, tasks, and notes
- **Get a single record** with full details and relationships
- **Create new records** directly from a conversation
- **Update existing records** -- rename a company, reassign a task
- **Delete records** you no longer need
- **Attach or detach** tasks and notes to companies, people, and opportunities
- **Read entity schemas** to understand your custom fields
- **Get a CRM overview** with record counts and recent activity

---

[\#](#prerequisites "Permalink")Prerequisites
---------------------------------------------

Before connecting an AI assistant, you need an access token:

1. Log in to Relaticle
2. Click your avatar in the top-right corner
3. Select **Access Tokens**
4. Click **Create** and give your token a name
5. Copy the token -- it won't be shown again

The token scopes your access to the team you select when creating it. All MCP operations use that team's data.

---

[\#](#setup-by-client "Permalink")Setup by Client
-------------------------------------------------

The MCP server endpoint is `https://mcp.relaticle.com`. Replace `YOUR_TOKEN` in the examples below with the access token you created above.

### [\#](#claude-desktop "Permalink")Claude Desktop

Add this to your Claude Desktop configuration file (`claude_desktop_config.json`):

```
{
  "mcpServers": {
    "relaticle": {
      "type": "streamable-http",
      "url": "https://mcp.relaticle.com",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

```

### [\#](#claude-code "Permalink")Claude Code

Add the server from your terminal:

```
claude mcp add relaticle \
  --transport streamable-http \
  https://mcp.relaticle.com \
  --header "Authorization: Bearer YOUR_TOKEN"

```

### [\#](#cursor "Permalink")Cursor

Add this to your Cursor MCP configuration (`.cursor/mcp.json`):

```
{
  "mcpServers": {
    "relaticle": {
      "type": "streamable-http",
      "url": "https://mcp.relaticle.com",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

```

### [\#](#vs-code-github-copilot "Permalink")VS Code (GitHub Copilot)

Add this to your VS Code settings (`.vscode/mcp.json`):

```
{
  "servers": {
    "relaticle": {
      "type": "streamable-http",
      "url": "https://mcp.relaticle.com",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

```

---

[\#](#available-tools "Permalink")Available Tools
-------------------------------------------------

The server provides 30 tools: one account tool plus full CRUD across five CRM entities, with link management for tasks and notes.

### [\#](#account "Permalink")Account

ToolDescription`whoami`Get the authenticated user, current team, team members, and token abilities### [\#](#companies "Permalink")Companies

ToolDescription`list_companies`List companies with optional search by name and pagination`get_company`Get a single company by ID with full details and relationships`create_company`Create a new company (requires `name`)`update_company`Update a company by ID`delete_company`Soft-delete a company by ID### [\#](#people "Permalink")People

ToolDescription`list_people`List contacts with optional search, filter by company`get_people`Get a single person by ID with full details and relationships`create_people`Create a new contact (requires `name`, optional `company_id`)`update_people`Update a contact by ID`delete_people`Soft-delete a contact by ID### [\#](#opportunities "Permalink")Opportunities

ToolDescription`list_opportunities`List deals with optional search, filter by company`get_opportunity`Get a single opportunity by ID with full details and relationships`create_opportunity`Create a new deal (requires `name`, optional `company_id`, `contact_id`)`update_opportunity`Update a deal by ID`delete_opportunity`Soft-delete a deal by ID### [\#](#tasks "Permalink")Tasks

ToolDescription`list_tasks`List tasks with optional search by title`get_task`Get a single task by ID with full details and relationships`create_task`Create a new task (requires `title`)`update_task`Update a task by ID`delete_task`Soft-delete a task by ID`attach_task_to_entities`Link a task to companies, people, opportunities, or assign users. Adds without removing existing links.`detach_task_from_entities`Unlink a task from companies, people, opportunities, or unassign users### [\#](#notes "Permalink")Notes

ToolDescription`list_notes`List notes with optional search by title`get_note`Get a single note by ID with full details and relationships`create_note`Create a new note (requires `title`)`update_note`Update a note by ID`delete_note`Soft-delete a note by ID`attach_note_to_entities`Link a note to companies, people, or opportunities. Adds without removing existing links.`detach_note_from_entities`Unlink a note from companies, people, or opportunitiesAll list tools support `search`, `per_page` (default 15), and `page` parameters. Create and update tools accept `custom_fields` as key-value pairs when your team has custom fields configured.

---

[\#](#schema-resources "Permalink")Schema Resources
---------------------------------------------------

The server exposes five schema resources that describe each entity's fields, including any custom fields your team has configured:

Resource URIDescription`relaticle://schema/company`Company fields and custom fields`relaticle://schema/people`People (contact) fields and custom fields`relaticle://schema/opportunity`Opportunity (deal) fields and custom fields`relaticle://schema/task`Task fields and custom fields`relaticle://schema/note`Note fields and custom fieldsAI assistants read these schemas automatically to understand what data they can work with, including your team's custom fields.

---

[\#](#crm-overview-prompt "Permalink")CRM Overview Prompt
---------------------------------------------------------

The server includes a built-in prompt called **CRM Overview** that gives your AI assistant a snapshot of your CRM data -- record counts for each entity and recently created companies and people. This is a great starting point for any conversation.

---

[\#](#example-prompts "Permalink")Example Prompts
-------------------------------------------------

Once connected, try these in your AI assistant:

- "List all my companies"
- "Create a new company called Acme Corp"
- "Show me the people at company X"
- "Create a task to follow up with John next week"
- "Give me an overview of my CRM"
- "Update the name of company X to Y"
- "Delete the task with ID abc-123"

---

[\#](#troubleshooting "Permalink")Troubleshooting
-------------------------------------------------

### [\#](#unauthorized-or-401-error "Permalink")"Unauthorized" or 401 Error

Your access token may be expired or invalid. Create a new one from **Settings &gt; Access Tokens**.

### [\#](#no-data-returned "Permalink")No Data Returned

The MCP server scopes all data to the team associated with your token. Make sure the token was created for the correct team and that the team has data.

### [\#](#connection-refused "Permalink")Connection Refused

Verify the MCP URL is correct: `https://mcp.relaticle.com`.

### [\#](#custom-fields-not-showing "Permalink")Custom Fields Not Showing

Custom fields are team-specific. If you don't see them, confirm they're configured for your team in **Settings &gt; Custom Fields**. The AI assistant reads schema resources automatically to discover available fields.

### [\#](#rate-limiting "Permalink")Rate Limiting

The MCP server uses the same rate limits as the REST API. If you hit limits, wait a moment and retry.

 [  Edit this page on GitHub ](https://github.com/Relaticle/relaticle/edit/main/packages/Documentation/resources/markdown/mcp-guide.md)

  ###    On this page

 - [ What You Can Do ](#what-you-can-do)
- [ Prerequisites ](#prerequisites)
- [ Setup by Client ](#setup-by-client)
- [ Available Tools ](#available-tools)
- [ Schema Resources ](#schema-resources)
- [ CRM Overview Prompt ](#crm-overview-prompt)
- [ Example Prompts ](#example-prompts)
- [ Troubleshooting ](#troubleshooting)

   [                                                         ](https://relaticle.com) The open-source CRM built for AI agents. Self-hosted. No per-seat pricing. Yours to own.

  [  ](https://github.com/Relaticle/relaticle) [  ](https://x.com/relaticle) [  ](https://www.linkedin.com/company/relaticle)

 ###  Quick Links

- [ Home ](https://relaticle.com)
- [ Pricing ](https://relaticle.com/pricing)
- [ Documentation ](https://relaticle.com/docs)
- [ Features ](https://relaticle.com/#features)

 ###  Support &amp; Legal

- [ Privacy Policy ](https://relaticle.com/privacy-policy)
- [ Terms of Service ](https://relaticle.com/terms-of-service)
- [ Contact Us ](https://relaticle.com/contact)

 © 2026 Relaticle. All rights reserved.
