manifest.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "mcp-builder",
  3. "version": "1.0.0",
  4. "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).",
  5. "author": "Teaching AI",
  6. "type": "workflow-plugin",
  7. "workflows": [
  8. {
  9. "id": "mcp-builder",
  10. "name": "MCP Server Development Guide",
  11. "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).",
  12. "steps": [
  13. {
  14. "id": 1,
  15. "name": "**Tool Inspection**",
  16. "description": "**Tool Inspection**: List available tools and understand their capabilities",
  17. "type": "instruction"
  18. },
  19. {
  20. "id": 2,
  21. "name": "**Content Exploration**",
  22. "description": "**Content Exploration**: Use READ-ONLY operations to explore available data",
  23. "type": "instruction"
  24. },
  25. {
  26. "id": 3,
  27. "name": "**Question Generation**",
  28. "description": "**Question Generation**: Create 10 complex, realistic questions",
  29. "type": "instruction"
  30. },
  31. {
  32. "id": 4,
  33. "name": "**Answer Verification**",
  34. "description": "**Answer Verification**: Solve each question yourself to verify answers",
  35. "type": "instruction"
  36. }
  37. ],
  38. "inputs": [],
  39. "outputs": []
  40. }
  41. ]
  42. }