Skip to main content
Glama

MCP Prompts Server

{ "id": "code-review-workflow", "name": "Advanced Code Review Workflow", "version": 1, "description": "Multi-step workflow for comprehensive code review and feedback generation", "variables": { "repository": "modelcontextprotocol/mcp-prompts", "branch": "main", "file_path": "src/core/prompt.service.ts" }, "steps": [ { "id": "fetch_code", "type": "http", "method": "GET", "url": "https://api.github.com/repos/{{ variables.repository }}/contents/{{ variables.file_path }}", "headers": { "Accept": "application/vnd.github.v3.raw", "Authorization": "Bearer {{ env.GITHUB_TOKEN }}" }, "output": "source_code", "errorPolicy": "abort" }, { "id": "analyze_code", "type": "prompt", "promptId": "code-analyzer", "input": { "code": "{{ context.source_code }}", "language": "typescript", "framework": "node" }, "output": "code_analysis", "errorPolicy": "retry<3>" }, { "id": "generate_feedback", "type": "prompt", "promptId": "feedback-generator", "input": { "analysis": "{{ context.code_analysis }}", "file_path": "{{ variables.file_path }}", "repository": "{{ variables.repository }}" }, "output": "feedback", "errorPolicy": "continue" }, { "id": "save_results", "type": "shell", "command": "echo '{{ context.feedback }}' > review-feedback.md", "workingDir": "./output", "output": "file_path", "errorPolicy": "skip" } ] }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sparesparrow/mcp-prompts'

If you have feedback or need assistance with the MCP directory API, please join our Discord server