Server Details
MCP server enabling AI agents to manage Bitrix24 features via standardized protocol
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
See and control every tool call
Available Tools
14 toolstasks_bitrix_mcp_add_task_resultTry in Inspector
Adds a formal work summary or result to the task. This is typically used to document the final outcome of a task.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The result text. Must not be an empty string. | |
| taskId | Yes | Identifier of the task. Must be a positive integer. |
tasks_bitrix_mcp_clear_task_deadlineTry in Inspector
Clears the deadline for a task.
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | No | Identifier of the task to update. Must be a positive integer. |
tasks_bitrix_mcp_create_check_listTry in Inspector
Creates a new checklist inside a task.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the checklist. Must not be an empty string. | |
| taskId | Yes | Identifier of the task. Must be a positive integer. | |
| checkListItems | No | List of items to be added to the checklist. |
tasks_bitrix_mcp_create_check_list_itemTry in Inspector
Adds a new item to a checklist.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the checklist item. Must not be an empty string. | |
| checkListId | Yes | Identifier of the checklist. Must not be null. |
tasks_bitrix_mcp_create_taskTry in Inspector
Creates a new task with the provided title and other details.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title. Must be a non-empty string | |
| status | No | Task status | |
| groupId | No | Identifier of the group for the task. Must be a positive integer. | |
| priority | No | Task priority. 'high' marks it as important, 'average' unmarks it. | |
| creatorId | No | Identifier of the creator. Defaults to the current user. | |
| auditorIds | No | List of user IDs to add as auditors | |
| description | No | Task description | |
| deadlineDate | No | Task deadline in 'Y/m/d H:i' format | |
| parentTaskId | No | Identifier of the parent task to create a subtask. Must be a positive integer | |
| accompliceIds | No | List of user IDs to add as accomplices | |
| responsibleId | No | Identifier of the responsible user. Defaults to the current user. |
tasks_bitrix_mcp_delete_check_listTry in Inspector
Deletes an entire checklist or checklist item from a task. This action is irreversible.
| Name | Required | Description | Default |
|---|---|---|---|
| checkListId | Yes | Identifier of the checklist to delete. Must be a positive integer. |
tasks_bitrix_mcp_delete_check_list_itemTry in Inspector
Deletes an entire checklist item from a task. This action is irreversible.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Identifier of the checklist item to delete. Must be a positive integer. |
tasks_bitrix_mcp_detach_task_from_groupTry in Inspector
Detaches a task from a group.
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | No | Identifier of the task to update. Must be a positive integer. |
tasks_bitrix_mcp_get_task_by_idTry in Inspector
Retrieves full task data by its identifier.
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | Identifier of the task. Must be a positive integer. |
tasks_bitrix_mcp_search_tasksTry in Inspector
Searches for tasks based on various criteria. Returns their identifiers, names and deadline. If you want to search for tasks by 'RESPONSIBLE_ID', 'CREATED_BY' or 'GROUP_ID', the value must be a numeric identifier, not a user's or group's name. If you don't know identifiers, use another tools for find it firstly.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Tag name to search for or null if not needed. | |
| title | No | Keyword to search in the task title or null if not needed. | |
| status | No | Task status to search for. By default, tasks in progress are searched. | |
| groupId | No | Identifier of the group. Must be a positive integer or null if not needed. | |
| memberId | No | Identifier of a task member. Leave null for the current user. | |
| auditorId | No | Identifier of the auditor. Must be a positive integer or null if not needed. | |
| creatorId | No | Identifier of the user who created the task. Must be a positive integer or null if not needed. | |
| deadlineTo | No | The end of the deadline range in 'Y/m/d H:i' format or null if not needed. | |
| description | No | Keyword to search in the task description or null if not needed. | |
| accompliceId | No | Identifier of the accomplice. Must be a positive integer or null if not needed. | |
| deadlineFrom | No | The start of the deadline range in 'Y/m/d H:i' format or null if not needed. | |
| responsibleId | No | Identifier of the responsible user. Must be a positive integer or null if not needed. |
tasks_bitrix_mcp_search_usersTry in Inspector
Searches for a SINGLE user to get their ID by trying a list of possible name variations. Use this to find one user's ID, which can then be used in other tools.
| Name | Required | Description | Default |
|---|---|---|---|
| searchQueries | Yes | A list of name variations for the user you are trying to find. Provide different spellings, diminutive forms, or transliterations. |
tasks_bitrix_mcp_update_check_listTry in Inspector
Updates the name or order of an existing checklist or checklist item.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title. Must be a non-empty string or null to leave it unchanged. | |
| sortIndex | No | New sort index for reordering the checklists. Must be a non-negative integer or null to leave it unchanged. | |
| checkListId | Yes | Identifier of the checklist. Must be a positive integer. |
tasks_bitrix_mcp_update_check_list_itemTry in Inspector
Updates the name or order of an existing checklist item.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title. Must be a non-empty string or null to leave it unchanged. | |
| itemId | No | Identifier of the checklist item. Must be a positive integer. | |
| sortIndex | No | New sort index for reordering the checklist items. Must be a non-negative integer or null to leave it unchanged. |
tasks_bitrix_mcp_update_taskTry in Inspector
Updates an existing task with the provided data. Requires task ID.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title. Null to leave unchanged | |
| status | No | New status. Null to leave unchanged. | |
| taskId | Yes | Identifier of the task to update. Must be a positive integer. | |
| groupId | No | New group ID. Must be a positive integer. Null to leave unchanged. To detach from a group, use a dedicated tool. | |
| priority | No | New priority. 'high' marks it as important, 'average' unmarks it.Null to leave unchanged. | |
| creatorId | No | New creator's user ID. Must be a positive integer. Null to leave unchanged. | |
| description | No | New description. Null to leave unchanged. | |
| deadlineDate | No | New deadline in 'Y/m/d H:i' format. Null to leave unchanged. To clear the deadline, use a dedicated tool. | |
| parentTaskId | No | New parent task ID. Must be a positive integer. Null to leave unchanged. | |
| responsibleId | No | New responsible user's ID. Must be a positive integer. Null to leave unchanged. |
To claim this server, publish a /.well-known/glama.json file on your server's domain with the following structure:
The email address must match the email associated with your Glama account. Once verified, the server will appear as claimed by you.
Control your server's listing on Glama, including description and metadata
Receive usage reports showing how your server is being used
Get monitoring and health status updates for your server
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!