Skip to main content
Glama

Moneybird MCP Server

MIT License
39
18
  • Apple
request.ts579 B
import { z } from 'zod'; import { getClient } from '../services/client.js'; export const GenericRequestSchema = z.object({ method: z.enum(['get', 'post', 'put', 'delete']).describe('HTTP method for the request'), path: z.string().describe('API path to request, relative to the base API URL'), data: z.any().optional().describe('Optional data to send with the request'), }); export async function makeGenericRequest(options: z.infer<typeof GenericRequestSchema>) { const client = getClient(); return await client.request(options.method, options.path, options.data); }

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/vanderheijden86/moneybird-mcp-server'

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