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_cursor;
import "google/protobuf/empty.proto";
message IndexKey {
reserved 1, 2, 3;
bytes values = 4;
}
// Used to serialize the cursor for paginated query.
message InstanceCursor {
string instance_name = 1;
oneof position {
IndexKey after = 2;
google.protobuf.Empty end = 3;
}
bytes query_fingerprint = 4;
}
message Cursor {
oneof position {
IndexKey after = 1;
google.protobuf.Empty end = 2;
}
optional bytes query_fingerprint = 3;
}