We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Khowabunga/usaspending-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•393 B
/**
* Prompts Index
* Central export file for all MCP prompts
*/
import type { USASpendingClient } from '../clients/usaspending';
import { registerDailyCompetitiveBriefPrompt } from './daily-competitive-brief';
/**
* Register all prompts with the MCP server
*/
export function registerAllPrompts(server: any, client: USASpendingClient) {
registerDailyCompetitiveBriefPrompt(server);
}