PlanfixMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PLANFIX_TAGS | No | Comma-separated OpenAPI tags to include tools for | task,contact,project,comments |
| PLANFIX_BASE_URL | No | Base URL of the Planfix REST API | https://your-account.planfix.com/rest |
| PLANFIX_API_TOKEN | Yes | Bearer token for Planfix API authentication | |
| PLANFIX_VALIDATE_OUTPUT | No | Whether to validate tool outputs against OpenAPI schemas | true |
| PLANFIX_EXCLUDE_OPERATION_IDS | No | Operation IDs to exclude, comma-separated | |
| PLANFIX_INCLUDE_OPERATION_IDS | No | Additional operation IDs to include, comma-separated |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| contact_by_idD | Контакт по номеру |
| update_contactC | Обновить контакт по номеру |
| contact_listC | Список контактов и компаний |
| create_contactC | Создать контакт или компанию |
| import_contactsC | Импортировать список контактов |
| contact_commentsD | Комментарии к контакту |
| add_contact_commentC | Добавить комментарий к контакту |
| add_contact_datatagD | Добавить значение доп. поля в новый комментарий контакта |
| add_contact_datatag_to_commentB | Добавить значение доп. поля в существующий комментарий контакта |
| update_contact_commentC | Обновить комментарий к контакту |
| contact_file_listC | Файлы, прикреплённые к контакту |
| contact_template_listD | Шаблоны контактов и компаний |
| contact_group_listC | Группы контактов |
| contact_filtersD | Список фильтров контактов |
| task_by_idC | Задача по номеру |
| update_taskC | Обновить задачу по номеру |
| task_listC | Список задач по фильтру |
| create_taskD | Создать задачу |
| task_commentsD | Комментарии к задаче |
| add_task_commentC | Добавить комментарий к задаче |
| update_task_commentC | Обновить комментарий к задаче |
| add_task_datatagC | Добавить значение доп. поля в новый комментарий задачи |
| add_task_datatag_to_commentC | Добавить значение доп. поля в существующий комментарий задачи |
| task_file_listC | Файлы, прикреплённые к задаче |
| task_template_listC | Список шаблонов задач |
| recurring_task_listC | Список периодических задач |
| task_filtersB | Список фильтров задач |
| comment_by_idD | Комментарий по номеру |
| delete_commentC | Удалить комментарий |
| comment_listD | Список комментариев |
| project_by_idD | Проект по номеру |
| update_projectC | Обновить проект по номеру |
| project_listD | Список проектов |
| create_projectD | Создать проект |
| project_file_listC | Файлы, прикреплённые к проекту |
| project_template_listD | Шаблоны проектов |
| project_group_listD | Группы проектов |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 37 tools
Tools are grouped by resource (contact, task, project, comment) with clear prefixes, making most purposes distinct. However, the two datatag tools for new vs existing comments and the generic comment tools could cause some confusion.
Naming is mixed: some tools follow verb-first (update_contact, create_task) while others are noun-first (contact_list, task_by_id). While still readable, the inconsistency makes it harder to predict tool names.
With 37 tools, the set is quite large, exceeding the 25-tool threshold. Many tools cover niche features like datatags and templates, which adds cognitive load and makes the set feel over-scoped.
The toolset covers create, read, and update for contacts, tasks, and projects, but lacks delete operations for these core resources. Comments and datatags are well handled, but the missing deletes are a notable gap.