We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kastalien-Research/thoughtbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env tsx
import { agentPath, getCommonArgs, runAgentFile } from "./run-agent-util.js";
async function main() {
const { prompt, budget } = getCommonArgs();
if (!prompt) {
console.error("Usage: npx tsx scripts/agents/assumption-auditor.ts --prompt \"...\" [--budget 2]");
process.exit(1);
}
await runAgentFile({ agentFile: agentPath("assumption-auditor"), prompt, budget });
}
main().catch((err) => {
console.error(err);
process.exit(1);
});