MCP.so
登录

Unleash MCP Server

@cuongtl1992

关于 Unleash MCP Server

A Model Context Protocol (MCP) server implementation that integrates with Unleash Feature Toggle system.

基本信息

分类

其他

许可证

MIT

运行时

node

传输方式

stdio

发布者

cuongtl1992

提交者

Tran Le Cuong

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "unleash-mcp": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/inspector",
        "node",
        "dist/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Unleash MCP Server?

A Model Context Protocol (MCP) server that bridges LLM applications with the Unleash feature flag system. It lets AI applications check feature flag status, expose flag information, create and update flags, and list all projects. Designed for developers who want to integrate Unleash flag management into LLM workflows.

How to use Unleash MCP Server?

Install dependencies with npm i, build with npm run build, then run with npm start. For Claude or Cursor, add an MCP config using npx -y unleash-mcp and set the environment variables UNLEASH_URL, UNLEASH_API_TOKEN, MCP_TRANSPORT, and MCP_HTTP_PORT. The server supports both stdio and HTTP/SSE transports.

Key features of Unleash MCP Server

  • Check feature flag status from Unleash
  • Expose feature flag information to LLMs
  • Create and update feature flags
  • List all projects via MCP resources
  • Supports stdio and HTTP/SSE transport modes

Use cases of Unleash MCP Server

  • An AI assistant queries flag status to decide behavior
  • Automated creation or updating of feature flags through an LLM
  • Listing all projects to provide context to an LLM

FAQ from Unleash MCP Server

What are the requirements?

Node.js v18 or higher, TypeScript v5.0 or higher, and access to an Unleash server instance.

How do I configure the server?

Set the environment variables UNLEASH_URL (your Unleash endpoint), UNLEASH_API_TOKEN (API token), MCP_TRANSPORT (e.g., stdio), and MCP_HTTP_PORT (e.g., 3001).

What transports does the server support?

It supports stdio transport and HTTP/SSE transport, with implementations in src/transport/stdio.ts and src/transport/http.ts.

Can I inspect the MCP server during development?

Yes. Use npm run build then npx @modelcontextprotocol/inspector node dist/index.js for stdio, or run npm start then npx @modelcontextprotocol/inspector for SSE.

Which operations are available?

The server provides tools to get a feature flag, get all projects, and create/update flags; resources expose flags and projects; prompts include single and batch flag checking.

评论

其他 分类下的更多 MCP 服务器