get_space
Retrieve details about your Backlog workspace, including project settings and configuration, to manage team collaboration and track development progress.
Instructions
Returns information about the Backlog space
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/getSpace.ts:25-25 (handler)The core handler that implements the 'get_space' tool logic by calling the Backlog client's getSpace method.handler: async () => backlog.getSpace(),
- src/tools/getSpace.ts:7-7 (schema)Defines the empty input schema for the get_space tool.const getSpaceSchema = buildToolSchema((_t) => ({}));
- src/tools/getSpace.ts:22-24 (schema)Specifies the input schema (empty), output schema (SpaceSchema), and important fields for the get_space tool.schema: z.object(getSpaceSchema(t)), outputSchema: SpaceSchema, importantFields: ['spaceKey', 'name', 'lang', 'timezone'],
- src/tools/tools.ts:70-70 (registration)Instantiates and registers the get_space tool within the 'space' toolset group.getSpaceTool(backlog, helper),
- src/tools/tools.ts:33-33 (registration)Imports the getSpaceTool factory function.import { getSpaceTool } from './getSpace.js';