Skip to main content
Glama

get_config

Retrieve comprehensive configuration details for Dart project management, including available assignees, dartboards, folders, statuses, tags, and custom properties, to facilitate task and document management.

Instructions

Get information about the user's space, including all of the possible values that can be provided to other endpoints. This includes available assignees, dartboards, folders, statuses, tags, priorities, sizes, and all custom property definitions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler logic for the 'get_config' tool. It invokes ConfigService.getConfig() to fetch the configuration and returns it as a formatted JSON string in the tool response.
    case GET_CONFIG_TOOL.name: { const config = await ConfigService.getConfig(); return { content: [{ type: "text", text: JSON.stringify(config, null, 2) }], }; }
  • Schema definition for the 'get_config' tool, specifying its name, description, and empty input schema (no parameters required).
    export const GET_CONFIG_TOOL: Tool = { name: "get_config", description: "Get information about the user's space, including all of the possible values that can be provided to other endpoints. This includes available assignees, dartboards, folders, statuses, tags, priorities, sizes, and all custom property definitions.", inputSchema: { type: "object", properties: {}, required: [], }, };
  • index.ts:192-214 (registration)
    Registration of the 'get_config' tool (as GET_CONFIG_TOOL) in the TOOLS array, which is returned by the listTools endpoint.
    const TOOLS = [ // Config GET_CONFIG_TOOL, // Tasks CREATE_TASK_TOOL, LIST_TASKS_TOOL, GET_TASK_TOOL, UPDATE_TASK_TOOL, DELETE_TASK_TOOL, // Docs CREATE_DOC_TOOL, LIST_DOCS_TOOL, GET_DOC_TOOL, UPDATE_DOC_TOOL, DELETE_DOC_TOOL, // Comments ADD_TASK_COMMENT_TOOL, LIST_TASK_COMMENTS_TOOL, // Other GET_DARTBOARD_TOOL, GET_FOLDER_TOOL, GET_VIEW_TOOL, ];

Other Tools

Related 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/its-dart/dart-mcp-server'

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