We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jinzcdev/markmap-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
registry-base.ts•754 B
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { MarkmapMcpContext } from "../mcp/tools/context.js";
export abstract class RegistryBase {
/**
* Creates a new registry instance.
*
* @param server - The MCP server instance to register components with
* @param context - The context object containing configuration and state information
*/
constructor(
protected server: McpServer,
protected context: MarkmapMcpContext
) {}
/**
* Registers all applicable components based on site version and authentication status.
* This method follows a specific registration sequence to ensure proper component organization.
*/
public abstract register(): void;
}