AgentHubAgentHub

clarifyprompt

MCP ServerMCP Registry官方收录

io.github.LumabyteCo/clarifyprompt · v1.1.3

AI prompt optimization for 58+ platforms across 7 categories with custom platforms

概览

clarifyprompt 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "clarifyprompt": {
      "command": "npx",
      "args": [
        "-y",
        "clarifyprompt-mcp"
      ],
      "env": {
        "LLM_API_URL": "<LLM_API_URL>",
        "LLM_MODEL": "<LLM_MODEL>"
      }
    }
  }
}

环境变量

LLM_API_URL必填

LLM API endpoint URL (OpenAI-compatible or Anthropic)

LLM_API_KEY可选secret

API key for the LLM provider (not needed for local Ollama)

LLM_MODEL必填

Model name/ID to use for optimization

相关资源

统一 Manifest

{
  "id": "io.github.LumabyteCo/clarifyprompt",
  "type": "mcp-server",
  "version": "1.1.3",
  "displayName": "clarifyprompt",
  "description": "AI prompt optimization for 58+ platforms across 7 categories with custom platforms",
  "repository": {
    "url": "https://github.com/LumabyteCo/clarifyprompt-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "clarifyprompt-mcp",
        "version": "1.1.3",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "LLM_API_URL",
            "description": "LLM API endpoint URL (OpenAI-compatible or Anthropic)",
            "isRequired": true
          },
          {
            "name": "LLM_API_KEY",
            "description": "API key for the LLM provider (not needed for local Ollama)",
            "isSecret": true
          },
          {
            "name": "LLM_MODEL",
            "description": "Model name/ID to use for optimization",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.LumabyteCo/clarifyprompt",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.LumabyteCo%2Fclarifyprompt/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
clarifyprompt — MCP Server 安装与配置 · AgentHub