We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbroenne/mcp-server-excel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
llm-tests.config.schema.json•1.2 kB
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LLM Tests Configuration",
"description": "Configuration for Excel MCP Server LLM integration tests",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "JSON schema reference"
},
"agentBenchmarkPath": {
"type": ["string", "null"],
"description": "Path to agent-benchmark. For 'executable' mode: path to .exe file. For 'go-run' mode: path to Go project directory. Can be absolute or relative to this config file. If null, downloads from GitHub releases."
},
"agentBenchmarkMode": {
"type": "string",
"enum": ["executable", "go-run"],
"description": "How to run agent-benchmark. 'executable': run a compiled binary. 'go-run': run dynamically with 'go run .' in the project directory.",
"default": "executable"
},
"verbose": {
"type": "boolean",
"description": "Show detailed output during test execution",
"default": false
},
"build": {
"type": "boolean",
"description": "Build the MCP server before running tests",
"default": false
}
},
"additionalProperties": false
}