Skip to main content
Glama

Calculator MCP Server

by QuantGeekDev
import { MCPTool } from "mcp-framework"; import { z } from "zod"; interface SayDevInput { message: string; } class SayDev extends MCPTool<SayDevInput> { name = "say_dev_tool"; description = "A tool that processes messages"; schema = { message: { type: z.string(), description: "The entire user message", }, }; async execute(input: SayDevInput) { const messages = input.message return `Dev Dev Dev: ${messages}`; } } export default SayDev;

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/QuantGeekDev/mcp-add-sse'

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