We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/michsob/powerplatform-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•478 B
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import type { ServiceContext } from "../types.js";
import { registerEntityPrompts } from "./entityPrompts.js";
export { registerEntityPrompts } from "./entityPrompts.js";
export { powerPlatformPrompts } from "./templates.js";
/**
* Register all prompts with the MCP server.
*/
export function registerAllPrompts(server: McpServer, ctx: ServiceContext): void {
registerEntityPrompts(server, ctx);
}