We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/0xBigBoss/tilt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Tool registry
*
* Exports all MCP tools for Tilt
* Note: tiltDump is intentionally excluded - returns 6.8MB which is unusable for LLMs
*/
export { tiltArgs } from './args.js';
export { tiltDescribeResource } from './describe.js';
export { tiltDisable } from './disable.js';
export { tiltEnable } from './enable.js';
export { tiltLogs } from './logs.js';
export { tiltGetResources } from './resources.js';
export { tiltStatus } from './status.js';
export { tiltTrigger } from './trigger.js';
export { tiltWait } from './wait.js';