Skip to main content
Glama
index.ts817 B
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { z } from "zod"; export function registerTextCamelcase(server: McpServer) { server.registerTool("convert_text_to_camelcase", { inputSchema: { text: z.string().describe("Text to convert to camelCase"), }, // VS Code compliance annotations annotations: { title: "Convert to camelCase", readOnlyHint: false } }, async ({ text }) => { const camelCase = text .replace(/(?:^\w|[A-Z]|\b\w)/g, (word, index) => { return index === 0 ? word.toLowerCase() : word.toUpperCase(); }) .replace(/\s+/g, ''); return { content: [ { type: "text", text: `camelCase: ${camelCase}`, }, ], }; } ); }

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/wrenchpilot/it-tools-mcp'

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