Planfix MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Planfix MCP Servercreate a task to call client about proposal"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Planfix MCP Server
This MCP server provides integration with the Planfix API, allowing Model Context Protocol (MCP) clients to interact with Planfix CRM and task management system.
Features
Lead management (create, search, convert to tasks)
Lead searches can reuse a known
clientIdto skip contact lookupsContact and company management
Task management (create, search, comment)
Report generation and management
Uses Planfix REST API v2.0 (API docs)
Authentication via Bearer token
Related MCP server: Kommo MCP Server
Configuration
The server requires the following environment variables for Planfix API access:
PLANFIX_ACCOUNT– Your Planfix account name (e.g.,yourcompany)PLANFIX_TOKEN– Planfix API token with necessary permissionsPLANFIX_BASE_URL– (optional) Override the REST API base URL. Defaults tohttps://<PLANFIX_ACCOUNT>.planfix.com/rest/. Set this for.ruand other regional installations, e.g.https://yourcompany.planfix.ru/rest/PLANFIX_ACCOUNT_URL– (optional) Override the web origin used for human-facing links (task/contact/user pages). Defaults toPLANFIX_BASE_URLwithout the trailing/rest/PLANFIX_FIELD_ID_EMAIL– Custom field ID for emailPLANFIX_FIELD_ID_EMAIL_ADDITIONAL– (optional, no default) Numeric custom field ID used to store additional email addresses (multi-value). Must point at a real multi-value custom field you created on your account; the system secondary-email field id124is not a valid write target. When unset, storing additional addresses is disabled (matching by the system field still works). The Planfix system secondary-email field (additionalEmailAddresses) is read-only over the REST API, so additional addresses are written to this custom field; matching uses both the system field (filter type 4221) and this custom field (filter type 4101), for any email search once this is setPLANFIX_FIELD_ID_PHONE– Custom field ID for phonePLANFIX_FIELD_ID_TELEGRAM– Set any value to use the system Telegram fieldPLANFIX_FIELD_ID_TELEGRAM_CUSTOM– Custom field ID for Telegram when using the custom fieldPLANFIX_FIELD_ID_CLIENT– Custom field ID for clientPLANFIX_FIELD_ID_MANAGER– Custom field ID for managerPLANFIX_FIELD_ID_AGENCY– Custom field ID for agencyPLANFIX_FIELD_ID_LEAD_SOURCE– Custom field ID for lead sourcePLANFIX_FIELD_ID_LEAD_SOURCE_VALUE– Value ID for default lead sourcePLANFIX_FIELD_ID_PIPELINE– Custom field ID for pipelinePLANFIX_FIELD_ID_TAGS– Custom field ID for task tagsMissing tag names will be added automatically to the directory
PLANFIX_FIELD_ID_LEAD_ID– Custom field ID for external lead IDPLANFIX_LEAD_TEMPLATE_ID– ID of the lead task templatePLANFIX_TASK_TITLE_TEMPLATE– Template for the default lead task title (e.g.,{name} - client's task)
config.yml
Custom fields can also be configured via config.yml. The default path is
./data/config.yml. Override it with the --config=/abs/path/config.yml CLI
flag or the PLANFIX_CONFIG environment variable. You can also specify a
different Planfix account when using a custom config:
PLANFIX_CONFIG=/etc/planfix-mcp.yml PLANFIX_ACCOUNT=demo \
npx @popstas/planfix-mcp-serverproxyUrl: "http://localhost:8080"
webhook:
enabled: false
url: "https://example.com/hook"
token: "<token>"
skipPlanfixApi: false
leadTaskFields:
- id: "456"
name: "id сделки"
argName: lead_id
type: number
contactFields:
- id: "123"
name: "Резидентство"
argName: resident
type: enum
values: ["резидент", "нерезидент", "иное"]
userFields:
- id: "789"
name: "Департамент"
argName: department
type: stringproxyUrl routes all Planfix REST API calls (including tool requests) through
the specified HTTP proxy.
Values from config.yml override matching entries from the legacy environment
variables when merged by id. User custom fields from this list are requested
individually by the planfix_search_manager tool so their values are available
in responses. Managers can be searched either by email or by numeric id
through this tool, enabling lookups when only an identifier is available.
Chat API
To create tasks from chat messages, add a chatApi block to config.yml:
chatApi:
useChatApi: true
chatApiToken: "<token>"
providerId: "<id>"
baseUrl: "https://<account>.planfix.com/webchat/api"chatApiToken– token for Planfix Chat API requests.providerId– identifier of the chat provider configured in Planfix.useChatApi– enable Chat API integration. Whentrue, task creation proceeds as:A chat is created via Chat API with the initial message.
getTaskretrieves the new task'staskId.Subsequent updates are made through the REST API.
baseUrl– base URL for Chat API calls. Defaults tohttps://<account>.planfix.com/webchat/api.
Webhook
To post lead task payloads to a webhook before creating or updating a task,
add a webhook block to config.yml:
webhook:
enabled: true
url: "https://example.com/hook"
token: "<token>"
skipPlanfixApi: falseenabled– whether to send the lead task payload to the webhook URL.url– webhook endpoint URL.token– shared secret appended to the JSON payload astoken.skipPlanfixApi– whentrue, the webhook response must includetaskId, and the Planfix REST API call is skipped.
Debug
npx @modelcontextprotocol/inspector node d:/projects/expertizeme/planfix-mcp-server/dist/index.jsLogging
Set LOG_LEVEL=debug to enable detailed cache logs. Logs are written to data/mcp.log.
Clearing Cache
Run npm run cache-clear to remove all cached Planfix API responses stored in data/planfix-cache.sqlite3 and delete the objects cache file data/planfix-cache.yml.
Example MCP Config (NPX)
{
"mcpServers": {
"planfix": {
"command": "npx",
"args": [
"-y",
"@popstas/planfix-mcp-server"
],
"env": {
"PLANFIX_ACCOUNT": "yourcompany",
"PLANFIX_TOKEN": "your-api-token",
"PLANFIX_FIELD_ID_EMAIL": "123",
"PLANFIX_FIELD_ID_PHONE": "124",
"PLANFIX_FIELD_ID_TELEGRAM": "1",
"PLANFIX_FIELD_ID_TELEGRAM_CUSTOM": "125",
"PLANFIX_FIELD_ID_CLIENT": "126",
"PLANFIX_FIELD_ID_MANAGER": "127",
"PLANFIX_FIELD_ID_AGENCY": "128",
"PLANFIX_FIELD_ID_TAGS": "129",
"PLANFIX_FIELD_ID_LEAD_ID": "130",
"PLANFIX_LEAD_TEMPLATE_ID": "42",
"PLANFIX_TASK_TITLE_TEMPLATE": "{name} - работа с клиентом"
}
}
}
}Usage
Running the Server
Run the server with the required environment variables set. Example (with npx):
PLANFIX_ACCOUNT=yourcompany \
PLANFIX_TOKEN=your-api-token \
PLANFIX_FIELD_ID_EMAIL=123 \
PLANFIX_FIELD_ID_PHONE=124 \
PLANFIX_FIELD_ID_TELEGRAM=1 \
PLANFIX_FIELD_ID_TELEGRAM_CUSTOM=125 \
PLANFIX_FIELD_ID_CLIENT=126 \
PLANFIX_FIELD_ID_MANAGER=127 \
PLANFIX_FIELD_ID_AGENCY=128 \
PLANFIX_FIELD_ID_LEAD_SOURCE=129 \
PLANFIX_FIELD_ID_LEAD_SOURCE_VALUE=130 \
PLANFIX_FIELD_ID_PIPELINE=131 \
PLANFIX_FIELD_ID_LEAD_ID=132 \
PLANFIX_FIELD_ID_TAGS=133 \
PLANFIX_LEAD_TEMPLATE_ID=42 \
PLANFIX_TASK_TITLE_TEMPLATE="{name} - работа с клиентом" \
npx @popstas/planfix-mcp-serverTo run the server over Server-Sent Events (SSE), use the planfix-mcp-server-sse command:
PLANFIX_ACCOUNT=yourcompany \
PLANFIX_TOKEN=your-api-token \
planfix-mcp-server-sseUsing the Planfix Client
The Planfix client provides a convenient way to interact with the Planfix API directly from the command line.
Prerequisites
Make sure you have the following environment variables set in your .env file:
PLANFIX_ACCOUNT=your-account
PLANFIX_TOKEN=your-api-tokenBasic Commands
Test the connection
npm run planfix testMake a GET request
npm run planfix get user/currentMake a POST request with data
npm run planfix post task/ --data '{"name":"Test Task","description":"Test Description"}'Search for objects
npm run planfix post object/list --data '{"filters":[{"type":1,"operator":"equal","value":"Продажа"}]}'
Tool Reference
planfix_create_sell_task
Creates a sell task using textual information about the agency and employee.
Resolves the client, parent lead task, assignees, and agency IDs automatically based on the provided strings.
Input fields (all strings):
name: Task title, e.g."Продажа {{ название товара }} на pressfinity.com".agency: Agency/company name (optional).email: Employee email used to locate the Planfix contact.contactName/employeeName: Employee full name (optional).telegram: Employee telegram username (optional).description: Description with the list of ordered products.project: Project name to associate with the sell task (optional).
Returns
{ taskId, url }.
planfix_create_sell_task_ids
Creates a sell task when Planfix identifiers are already known.
Requires numeric
clientIdand optionalleadTaskId,agencyId, andassignees(user IDs).Accepts
name,description, and optionalprojectstring values.
Update an object (PUT request)
npm run planfix put task/123 --data '{"name":"Updated Task Name"}'Delete an object
npm run planfix delete task/123
Using in Code
import { planfixClient } from './lib/planfix-client';
// Get current user
const user = await planfixClient.get('user/current');
// Create a new task
const newTask = await planfixClient.post('task/', {
name: 'New Task',
description: 'Task description',
// ... other task properties
});
// Search for objects
const objects = await planfixClient.post('object/list', {
filters: [
{
type: 1,
operator: 'equal',
value: 'Продажа'
}
]
});Available Tools
Lead Management
leadToTask: Convert a lead to a task by creating/updating contact and tasksearchLeadTask: Search for lead tasks by contact information
Contact Management
searchPlanfixContact: Search contacts by name, phone, email, or Telegram. When the primaryemaildoes not match the main email field, it is also matched against the system secondary-email field (filter type 4221) and, whenPLANFIX_FIELD_ID_EMAIL_ADDITIONALis set, against that custom field (filter type 4101). Both fallbacks apply to a plainemailsearch — the custom field is where this server writes extras, so a loneemailhas to be matched against it for a contact created here to be found again. The optionaladditionalEmails: string[]argument (max 10) adds each address to those same fallbacks, plus the main email field.createPlanfixContact: Create a new contact in Planfix. Accepts an optionaladditionalEmails: string[]argument (max 10) that is written to the additional-emails custom field (PLANFIX_FIELD_ID_EMAIL_ADDITIONAL), deduplicated and excluding the primaryemail. (The system secondary-email field is read-only via the API.)updatePlanfixContact: Update existing contact information. Accepts an optionaladditionalEmails: string[]argument (max 10) that is merged into the additional-emails custom field. Planfix custom-field writes replace the whole value, so the field is rewritten with the union of what is already stored there and the genuinely new addresses; nothing is lost. Addresses already on the contact — in the custom field, in the read-only system secondary-email field, or as the primaryemail— are not added again. WithforceUpdatethe field is instead rewritten with exactly the addresses you pass, so an empty array clears it; omittingadditionalEmailsleaves the field untouched either way.searchPlanfixCompany: Search for companies by name
Task Management
searchPlanfixTask: Search for tasks by title, client ID and optionaltemplateIdcreateSellTask: Resolve contact/agency IDs and create a sell taskcreateSellTaskIds: Create a sell task when IDs are already knowncreateLeadTask: Create a new lead task. WhenchatApi.useChatApiis enabled, it sends the initial message through the Chat API, gets the resultingtaskIdviagetTask, and then updates the task using the REST API. AcceptsmessageandcontactNamefields.addToLeadTask: Create or update a lead task and update contact details. Accepts an optionaladditionalEmails: string[]argument (max 10) that threads through contact search, creation, and update (matched against the system secondary-email field and thePLANFIX_FIELD_ID_EMAIL_ADDITIONALcustom field; written to the custom field). Whenwebhook.enabledis true, it posts the input payload to the webhook endpoint, optionally skipping the Planfix API ifskipPlanfixApiis set.createTask: Create a task using text fieldscreateComment: Add a comment to a taskgetChildTasks: Retrieve child tasks of a parent task. Userecursiveto fetch all descendant tasks as a flat list; returned tasks includeparent_task_id.updateLeadTask: Update an existing lead task (only empty fields are updated unlessforceUpdateis true)
Directory Management
planfix_search_directory: Search directories by nameplanfix_search_directory_entry: Search directory entry by directory name and entry name
User Management
searchManager: Find a manager by email
Reporting
listReports: List all available reportsrunReport: Generate and retrieve a specific report
References
TODO:
Add tool
getTaskto retrieve task detailsAdd tool
getContactto retrieve contact detailsAdd tool
getManagerto retrieve manager detailsAdd more comprehensive error handling and logging
Add input validation for all API endpoints
Add rate limiting and retry logic for API calls
MIT License
This server cannot be installed
Maintenance
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
- AlicenseBqualityCmaintenanceEnables comprehensive integration with Kommo CRM through 25 tools for managing leads, contacts, companies, tasks, events, and generating detailed analytics reports. Supports advanced workflow management, pipeline operations, and real-time performance tracking.Last updated2210MIT
- Flicense-qualityDmaintenanceEnables integration with Kommo CRM to manage leads, add notes and tasks, update custom fields, and list pipelines. Supports multi-tenant authentication and includes an approval system for bulk operations.Last updated2
- Flicense-qualityDmaintenanceProvides a REST API and MCP server to interact with Bitrix24 CRM, enabling CRUD operations on entities like deals, leads, contacts, and tasks via natural language.Last updated1112
- AlicenseAqualityDmaintenanceConnects AI agents to the Ploomes CRM REST API, exposing 56 tools for managing contacts, deals, tasks, pipelines, interactions, quotes, orders, products, fields, users, and account information.Last updated56221MIT
Related MCP Connectors
Pipedrive MCP Pack — wraps the Pipedrive REST API v1
Close CRM MCP Pack — wraps the Close (close.com) API v1.
Create and manage short links, track clicks, and automate URL management
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/popstas/planfix-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server