Skip to main content
Glama

VeyraX

Official
by VeyraX
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { z } from "zod"; export abstract class BaseTool { abstract name: string; abstract description: string; abstract schema: z.ZodObject<any>; register(server: McpServer) { server.tool( this.name, this.description, this.schema.shape, this.execute.bind(this) ); } abstract execute(args: z.infer<typeof this.schema>): Promise<{ content: Array<{ type: "text"; text: string }>; }>; }

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/VeyraX/veyrax-mcp'

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