Skip to main content
Glama

get_document

Retrieve specific documents from Simplicate business data using document IDs to access CRM records, project files, timesheets, and invoices.

Instructions

Get specific document by ID

Input Schema

NameRequiredDescriptionDefault
document_idYes

Input Schema (JSON Schema)

{ "properties": { "document_id": { "type": "string" } }, "required": [ "document_id" ], "type": "object" }

Implementation Reference

  • MCP tool handler for 'get_document' that validates the document_id parameter and delegates to SimplicateServiceExtended.getDocumentById, returning JSON-formatted result.
    case 'get_document': { if (!toolArgs.document_id) throw new Error('document_id is required'); const data = await this.simplicateService.getDocumentById(toolArgs.document_id); return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] }; }
  • Tool registration in ListTools handler, including name, description, and input schema definition.
    { name: 'get_document', description: 'Get specific document by ID', inputSchema: { type: 'object', properties: { document_id: { type: 'string' } }, required: ['document_id'], }, },
  • Core service method that fetches the document by ID from the Simplicate API endpoint `/documents/document/{documentId}`.
    async getDocumentById(documentId: string): Promise<SimplicateDocument> { const response = await this.client.get(`/documents/document/${documentId}`); return response.data; }
  • Input schema defining the required 'document_id' string parameter for the tool.
    inputSchema: { type: 'object', properties: { document_id: { type: 'string' } }, required: ['document_id'], }, },

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/daanno/simplicate-mcp'

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