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
// Common types to be imported by other proto files
// Tests import resolution and type referencing
syntax = "proto3";
package example.common;
// Common timestamp message (local implementation)
message LocalTimestamp {
int64 seconds = 1;
int32 nanos = 2;
}
// Common pagination
message PageInfo {
int32 page_size = 1;
string page_token = 2;
int32 total_count = 3;
}
// Common audit info
message AuditInfo {
string created_by = 1;
LocalTimestamp created_at = 2;
optional string updated_by = 3;
optional LocalTimestamp updated_at = 4;
}
// Common address
message Address {
string line1 = 1;
optional string line2 = 2;
string city = 3;
string state = 4;
string postal_code = 5;
string country = 6;
}
// Common money type
message Money {
int64 amount_micros = 1; // Amount in micros (millionths)
string currency_code = 2; // ISO 4217 currency code
}
// Common status enum
enum CommonStatus {
COMMON_STATUS_UNKNOWN = 0;
COMMON_STATUS_ACTIVE = 1;
COMMON_STATUS_INACTIVE = 2;
COMMON_STATUS_PENDING = 3;
COMMON_STATUS_ARCHIVED = 4;
}