We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rsp2k/mcp-vultr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SQLite format 3 @ .�
c 5
�c �}++�1tablemodule_coveragemodule_coverageCREATE TABLE module_coverage (
id INTEGER PRIMARY KEY AUTOINCREMENT,
run_id INTEGER,
module_name TEXT,
statements INTEGER,
missing INTEGER,
coverage_percentage REAL,
FOREIGN KEY (run_id) REFERENCES test_runs (id)
)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�H�_tabletest_runstest_runsCREATE TABLE test_runs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
total_tests INTEGER,
passed_tests INTEGER,
failed_tests INTEGER,
skipped_tests INTEGER,
coverage_percentage REAL,
duration_seconds REAL,
git_hash TEXT,
branch TEXT
)