We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SupenBysz/gitea-mcp-tool'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
types.ts•446 B
/**
* Shared type definitions
* Re-exports common types used across the codebase
*/
import type { GiteaClient } from './gitea-client.js';
import type { ContextManager } from './context-manager.js';
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
/**
* Tool context interface for all tool registries
*/
export interface ToolContext {
client: GiteaClient;
contextManager: ContextManager;
server: McpServer;
}