We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Abinesh0206/kube-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ping.ts•305 B
export const pingSchema = {
name: "ping",
description:
"Verify that the counterpart is still responsive and the connection is alive.",
inputSchema: {
type: "object",
properties: {},
required: [],
},
};
export async function ping(): Promise<Record<string, never>> {
return {};
}