We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aberemia24/code-executor-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
client-id-schema.json•757 B
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/aberemia24/code-executor-MCP/schemas/client-id",
"title": "Client ID Validation Schema",
"description": "Validates client identifier format. Client IDs are associated with API keys for rate limiting and audit logging.",
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$",
"minLength": 1,
"maxLength": 64,
"examples": [
"client_1",
"production-service",
"test_client_123"
],
"errorMessage": {
"type": "Client ID must be a string",
"pattern": "Client ID must contain only alphanumeric characters, underscores, and hyphens",
"minLength": "Client ID must not be empty",
"maxLength": "Client ID must not exceed 64 characters"
}
}