get_workspaces_basic_info
Retrieve essential details about a workspace using the Carbon Voice MCP server for managing conversations, voice memos, and messaging.
Instructions
Get basic information about a workspace.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {},
"type": "object"
}
Implementation Reference
- src/server.ts:806-827 (registration)Registration of the 'get_workspaces_basic_info' tool, including its inline handler function that fetches basic workspace information using simplifiedApi.getAllWorkspacesWithBasicInfo.'get_workspaces_basic_info', { description: 'Get basic information about a workspace.', inputSchema: z.object({}).shape, annotations: { readOnlyHint: true, destructiveHint: false, }, }, async (params: unknown, { authInfo }): Promise<McpToolResponse> => { try { return formatToMCPToolResponse( await simplifiedApi.getAllWorkspacesWithBasicInfo( setCarbonVoiceAuthHeader(authInfo?.token), ), ); } catch (error) { logger.error('Error getting workspaces basic info:', { error }); return formatToMCPToolResponse(error); } }, );