Skip to main content
Glama
bit2beat

Bitrix24 MCP server

b24_disk_storages

List all Bitrix24 disk storages (personal, groups, company) to view and manage file storage locations across the portal.

Instructions

Lista todos los storages disponibles (personal, grupos, empresa).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
webhook_urlNo

Implementation Reference

  • index.js:205-207 (registration)
    Registers the 'b24_disk_storages' MCP tool with its schema and handler.
    server.tool('b24_disk_storages',
      'Lista todos los storages disponibles (personal, grupos, empresa).',
      diskStoragesSchema.shape, wrap(diskStorages));
  • Handles the tool logic: calls Bitrix24 API 'disk.storage.getlist' and returns portal info with storages list.
    export async function diskStorages({ webhook_url }) {
      const client = new Bitrix24Client(resolveWebhook(webhook_url));
      const res = await client.call('disk.storage.getlist');
      return { portal: client.portal, storages: res.result ?? [] };
    }
  • Defines the input schema for the tool: an optional webhook_url parameter.
    export const diskStoragesSchema = z.object({
      webhook_url: z.string().url().optional(),
    });
  • Imports the resolveWebhook utility used to determine the webhook URL.
    import { resolveWebhook } from '../utils/resolve-webhook.js';
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, and the description does not disclose behavioral traits beyond being a list operation. There is no mention of authentication requirements, rate limits, or side effects. For a tool with no annotations, the description should provide more transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, which is concise and front-loaded. However, it lacks essential information about parameters and behavior, making it under-specified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple but missing critical context: no output schema, no parameter documentation, and no behavioral details. An agent would not know what the response contains or how to use the optional parameter.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, webhook_url, has no description in the schema (0% coverage) and the tool description does not explain its purpose or how it affects the listing. The agent has no clue about its usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists all available storages, specifying categories (personal, groups, company). The verb 'Lista' and resource 'storages' are explicit, and the tool is distinct from sibling disk tools that operate on specific files or folders.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like b24_disk_folder_list or b24_disk_file_get. The description does not mention context, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/bit2beat/bitrix24-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server