promptflow-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@promptflow-mcpsave a greeting template with a {{name}} variable"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
✨ Features
📚 Template registry — save prompts with variables (
{{input}})🕘 Versioning — every edit creates a new version; nothing is lost
🔍 Search — full-text search across name, body and tags
🧩 Rendering — interpolate
{{variables}}at call time💾 Local-first — plain JSON on disk; back up or sync with git
🔌 MCP native — works with any MCP client (Claude, Cursor, etc.)
🚀 Quick start
# clone, install, build
git clone https://github.com/DuxuteLi70/promptflow-mcp.git
cd promptflow-mcp
npm install
npm run build
# run the tests
npm test
# start the MCP server
node dist/index.js🛠 MCP tools
Tool | Description |
| Save or update a prompt template |
| List all templates (title, version, tags) |
| Get a template, rendered with variables |
| Full-text search |
| Remove a template |
| Show version history of a template |
💡 Example
import { TemplateRegistry } from "./src/storage/store.js";
const reg = new TemplateRegistry();
// save a template
const id = reg.save("code-review", "Review this diff:\n{{diff}}", ["review"]);
// render it with variables
const rendered = reg.render(id, { diff: "..." });
// every save keeps history
reg.update(id, "Review this carefully:\n{{diff}}");
reg.versions(id); // [{version: 1, ...}, {version: 2, ...}]📦 Project layout
promptflow-mcp/
├── src/
│ ├── index.ts # entry point
│ ├── server.ts # MCP server wiring
│ ├── tools/ # MCP tool definitions
│ └── storage/ # JSON-file template store
├── tests/ # unit tests (node:test)
├── docs/ # design & usage docs
├── examples/ # MCP client config examples
└── assets/ # logo + demo media🤝 Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
📄 License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/RozuniFix72/promptflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server