Skip to main content
Glama

get_space

Retrieve detailed information about the Backlog space to manage projects, issues, and resources efficiently through API integration via the Backlog MCP Server.

Instructions

Returns information about the Backlog space

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Defines the getSpaceTool, including the handler function that executes the core logic by calling backlog.getSpace() to retrieve space information.
    export const getSpaceTool = ( backlog: Backlog, { t }: TranslationHelper ): ToolDefinition< ReturnType<typeof getSpaceSchema>, (typeof SpaceSchema)['shape'] > => { return { name: 'get_space', description: t( 'TOOL_GET_SPACE_DESCRIPTION', 'Returns information about the Backlog space' ), schema: z.object(getSpaceSchema(t)), outputSchema: SpaceSchema, importantFields: ['spaceKey', 'name', 'lang', 'timezone'], handler: async () => backlog.getSpace(), }; };
  • Zod schema defining the structure of the space object returned by the get_space tool.
    export const SpaceSchema = z.object({ spaceKey: z.string(), name: z.string(), ownerId: z.number(), lang: z.string(), timezone: z.string(), reportSendTime: z.string(), textFormattingRule: TextFormattingRuleSchema, created: z.string(), updated: z.string(), });
  • Defines the input schema for the get_space tool, which takes no parameters.
    const getSpaceSchema = buildToolSchema((_t) => ({}));
  • Registers the getSpaceTool as part of the 'space' toolset group in allTools.
    { name: 'space', description: 'Tools for managing Backlog space settings and general information.', enabled: false, tools: [ getSpaceTool(backlog, helper), getUsersTool(backlog, helper), getMyselfTool(backlog, helper), ], },

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/nulab/backlog-mcp-server'

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