We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MerabyLabs/promptarchitect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•421 B
/**
* Tools Index
* Exports all MCP tools with their schemas and handlers
*/
export {
generatePrompt,
generatePromptSchema,
type GeneratePromptInput,
} from './generatePrompt.js';
export {
refinePrompt,
refinePromptSchema,
type RefinePromptInput,
} from './refinePrompt.js';
export {
analyzePrompt,
analyzePromptSchema,
type AnalyzePromptInput,
type AnalysisResult,
} from './analyzePrompt.js';