We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GHjiejie/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { PromptDefinition } from "../../types/mcpPrompt.js";
import type { WorkflowDefinition } from "../../types/mcpPrompt.js";
// 导入所有提示模板
import {
codeReviewPrompt,
docGenerationPrompt,
debugHelpPrompt,
testGenerationPrompt,
refactoringPrompt,
} from "./templates.js";
// 导入所有工作流
import { workflows } from "./workflows.js";
// 导出所有提示模板
export const prompts: PromptDefinition[] = [
codeReviewPrompt,
docGenerationPrompt,
debugHelpPrompt,
testGenerationPrompt,
refactoringPrompt,
];
// 导出所有工作流
export { workflows };
// 导出类型
export type { PromptDefinition, WorkflowDefinition };