Prompter Mcp Server

by vines90

315 downloads
Not rated
GitHub

Description

# AI Prompter MCP Server 一个功能完备的AI提示词管理MCP服务器,支持Secret-Key认证、提示词管理、公共广场访问等功能。 ## 🚀 快速开始 ### 安装 ```bash npm install -g aiprompter-mcp-server ``` ### 基本配置 创建配置文件 `~/.aiprompter-mcp-config.json`: ```json { "api_url": "https://www.aiprompter.cc", "secret_key": "your-secret-key-here"…

About

# AI Prompter MCP Server 一个功能完备的AI提示词管理MCP服务器,支持Secret-Key认证、提示词管理、公共广场访问等功能。 ## 🚀 快速开始 ### 安装 ```bash npm install -g aiprompter-mcp-server ``` ### 基本配置 创建配置文件 `~/.aiprompter-mcp-config.json`: ```json { "api_url": "https://www.aiprompter.cc", "secret_key": "your-secret-key-here" } ``` ### Cursor配置示例 在…

Details

Author
vines90
Downloads
315
Categories
Other, AI

- Secret-Key and JWT token authentication
- Create, search, update, delete prompts with version history
- Public prompt square and trending prompts browsing
- Redis caching for improved query performance
- Automatic error retry on network failures
- Responsive design for desktop and mobile

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Prompter Mcp Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install globally with npm install -g aiprompter-mcp-server, then configure via a JSON config file (~/.aiprompter-mcp-config.json) or environment variables (PROMPT_MANAGER_API_URL, SECRET_KEY). Run using npx aiprompter-mcp-server in MCP hosts like Cursor or Claude Desktop.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "prompter mcp server": {
            "aiprompter": {
                "command": "npx",
                "args": [
                    "aiprompter-mcp-server"
                ],
                "env": {
                    "PROMPT_MANAGER_API_URL": "https://www.aiprompter.cc",
                    "SECRET_KEY": "your-secret-key"
                }
            }
        }
    }
}

McpServers

{
    "aiprompter": {
        "command": "npx",
        "args": [
            "aiprompter-mcp-server"
        ],
        "env": {
            "PROMPT_MANAGER_API_URL": "https://www.aiprompter.cc",
            "SECRET_KEY": "your-secret-key"
        }
    }
}

AI Prompter MCP Server

一个功能完备的AI提示词管理MCP服务器,支持Secret-Key认证、提示词管理、公共广场访问等功能。

🚀 快速开始

安装

npm install -g aiprompter-mcp-server

基本配置

创建配置文件 ~/.aiprompter-mcp-config.json

{
  "api_url": "https://www.aiprompter.cc",
  "secret_key": "your-secret-key-here"
}

Cursor配置示例

~/.cursor/mcp.json 中添加:

{
  "mcp": {
    "servers": {
      "aiprompter": {
        "command": "npx",
        "args": ["aiprompter-mcp-server"],
        "env": {
          "PROMPT_MANAGER_API_URL": "https://www.aiprompter.cc",
          "SECRET_KEY": "your-secret-key"
        }
      }
    }
  }
}

Claude Desktop配置示例

claude_desktop_config.json 中添加:

{
  "mcpServers": {
    "aiprompter": {
      "command": "npx",
      "args": ["aiprompter-mcp-server"],
      "env": {
        "PROMPT_MANAGER_API_URL": "https://www.aiprompter.cc",
          "SECRET_KEY": "your-secret-key"
      }
    }
  }
}

🛠️ 功能特性

认证方式

- Secret-Key认证:64位密钥,无需用户名密码 - JWT Token认证:传统用户名密码方式

提示词管理

- 创建提示词:支持分类、标签、公开/私有设置 - 搜索提示词:关键词、分类、标签搜索 - 更新提示词:完整CRUD操作,带版本记录 - 删除提示词:级联删除相关数据

提示词库访问

- 公共提示词广场:查看社区共享的提示词 - 私有提示词库:个人专属提示词管理 - 热门提示词:按热度排序的精选提示词

高级功能

- Redis缓存:提升查询性能 - 版本控制:每次更新自动生成版本记录 - 响应式设计:适配桌面和移动端 - 错误重试:网络异常自动重试

📋 可用工具

认证相关

- auth_status - 检查当前认证状态 - get_user_profile - 获取用户信息

提示词操作

- get_prompts - 获取提示词列表(支持搜索、分页) - get_prompt_detail - 获取单个提示词详情 - get_public_prompts - 获取公共提示词 - get_trending_prompts - 获取热门提示词 - add_prompt - 添加新提示词 - update_prompt - 更新提示词 - delete_prompt - 删除提示词

🔧 环境变量

| 变量名 | 描述 | 默认值 |
|--------|------|--------|
| PROMPT_MANAGER_API_URL | API服务器地址 | https://www.aiprompter.cc |
| SECRET_KEY | 64位Secret-Key认证 | 必填 |
| USER_TOKEN | JWT Token认证(可选) | - |
| USERNAME | 用户名(JWT认证用) | - |
| PASSWORD | 密码(JWT认证用) | - |

📦 安装方式

NPM安装(推荐)

npm install -g aiprompter-mcp-server

源码安装

git clone https://github.com/vines90/mcp-prompt-server.git
cd mcp-prompt-server
npm install
npm run build

🧪 测试

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.