We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sanity-io/sanity-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
register.ts•400 B
import type {McpServer} from '@modelcontextprotocol/sdk/server/mcp.js'
import {getGroqSpecificationTool, GetGroqSpecificationToolParams} from './getGroqSpecification.js'
export function registerGroqTools(server: McpServer) {
server.tool(
'get_groq_specification',
'Get the GROQ language specification summary',
GetGroqSpecificationToolParams.shape,
getGroqSpecificationTool,
)
}