We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mnehmos/mnehmos.trace.mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•498 B
/**
* gRPC/Protobuf Adapter Module
*
* Exports for the gRPC schema adapter.
*/
// Types
export {
type ProtoFile,
type ProtoMessage,
type ProtoField,
type ProtoEnum,
type ProtoEnumValue,
type ProtoService,
type ProtoMethod,
type ProtoOneof,
type StreamingMode,
} from './types.js';
// Parser
export { ProtoParser } from './proto-parser.js';
// Type Converter
export { ProtoTypeConverter } from './type-converter.js';
// Adapter
export { GrpcAdapter } from './adapter.js';