We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
syntax = "proto3";
package convex_keys;
import "google/protobuf/empty.proto";
message AdminKey {
optional string instance_name = 1;
// Time of issue, measured in seconds since the epoch.
uint64 issued_s = 2;
oneof identity {
uint64 member_id = 3;
google.protobuf.Empty system = 4;
}
bool is_read_only = 5;
}
message StorageToken {
message StoreFile {}
string instance_name = 1;
uint64 issued_s = 2;
oneof authorization_type {
StoreFile store_file = 3;
}
optional string component_id = 4;
}