We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/testdino-inc/testdino-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Tools index - Export all tools and handlers
*/
// Health tool
export { healthTool, handleHealth } from "./health.js";
// Test runs tools
export { listTestRunsTool, handleListTestRuns } from "./testruns/list-testruns.js";
export { getRunDetailsTool, handleGetRunDetails } from "./testruns/get-run-details.js";
export { uploadLatestLocalTestRunsTool, handleUploadLatestLocalTestRuns } from "./testruns/upload-latest-local-test-runs.js";
// Test cases tools
export { listTestCasesTool, handleListTestCases } from "./testcases/list-testcase.js";
export { getTestCaseDetailsTool, handleGetTestCaseDetails } from "./testcases/get-testcase-details.js";