Provides specialized roles, memory management, and knowledge systems for AI applications through MCP protocol. One command to transform any AI client into a professional powerhouse.
#### **2. Intelligent Memory**
*Use `promptx_remember` to save key information, and AI will proactively apply this knowledge in subsequent interactions.*
---
## β οΈ **Project Status Notice**
PromptX is currently in the **early development stage**, and we are actively improving features and fixing issues. Before reaching the official stable version, you may encounter some usage issues or instability.
**We sincerely ask for your understanding and support!** π
### π **Need Help? Get Support!**
If you encounter any issues during usage, please contact us through:
- π **Submit Issue**: [GitHub Issues](https://github.com/Deepractice/PromptX/issues) - Describe the problem in detail, we'll respond promptly
- π¬ **Direct Contact**: Add developer WeChat `sean-xie-deepractice` for immediate assistance
- π± **Tech Community**: Scan the QR code below to join our technical discussion group
Your feedback is invaluable to us and helps us improve product quality rapidly! β¨
---
## π **Quick Start - 30-Second Setup**
Open your configuration file and copy the `promptx` configuration code below. This is the simplest **zero-configuration mode**, where PromptX automatically handles everything for you.
```json
{
"mcpServers": {
"promptx": {
// Use npx to run promptx service
"command": "npx",
// Startup parameters configuration
"args": [
"-y", // Auto-confirm
"-f", // Force refresh cache
"--registry", // Specify registry
"https://registry.npmjs.org", // Use official registry
"dpml-prompt@beta", // Use stable beta version
"mcp-server" // Start service
]
}
}
}
```
**π― It's that simple!** Save the file and restart your AI application, and PromptX is successfully activated.
> **π‘ Tip:** The configuration specifically uses the official registry `registry.npmjs.org` to avoid installation issues caused by unofficial mirrors. If you find the installation slow, it's recommended to use a proxy tool for acceleration rather than switching to alternative mirrors.
### π **Advanced Configuration: HTTP Mode Support**
In addition to the local mode above, PromptX also supports **HTTP mode**, suitable for remote deployment or special network environments:
```bash
# Start HTTP mode server
npx -f -y dpml-prompt@beta mcp-server --transport http --port 3000
```
Then use in client configuration:
```json
{
"mcpServers": {
"promptx": {
"url": "http://localhost:3000/mcp"
}
}
}
```
π **[Complete Installation & Configuration Guide](https://github.com/Deepractice/PromptX/wiki/PromptX-MCP-Install)** - Detailed configuration methods for various clients and troubleshooting
---
## π **License**
[MIT License](LICENSE) - Making AI professional capabilities accessible
---
**π Get Started Now: Launch PromptX MCP Server and enhance your AI application with professional capabilities!**