We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ftaxats/SHMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schema.ts•300 B
import { z } from "zod";
export const configSchema = z.object({
apiKey: z.string().describe("SalesHandy API key for authentication"),
baseUrl: z.string().default("https://api.saleshandy.com/api/v1").describe("Base URL for SalesHandy API")
});
export type Config = z.infer<typeof configSchema>;