Unleash
A Model Context Protocol (MCP) server implementation that integrates with Unleash Feature Toggle system.
What is Unleash?
Unleash is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to model context protocol (mcp) server implementation that integrates with unleash feature toggle system.
A Model Context Protocol (MCP) server implementation that integrates with Unleash Feature Toggle system.
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A Model Context Protocol (MCP) server implementation that in
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx unleashConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Unleash
The Unleash MCP Server integrates the Unleash feature toggle management system with AI assistants through a TypeScript MCP implementation. It allows Claude and other LLM clients to check feature flag statuses, list projects, create new flags, update existing flags, and query individual toggles — enabling AI-driven feature flag management workflows.
Prerequisites
- Node.js v18+ and npm installed
- TypeScript v5.0+ (installed via npm)
- An Unleash instance (self-hosted or Unleash Cloud) with API access
- An Unleash API token with appropriate permissions
- Your Unleash server URL (e.g., https://app.unleash-hosted.com/demo)
Clone and install dependencies
Clone the Unleash MCP server repository and install its Node.js dependencies.
git clone https://github.com/cuongtl1992/unleash-mcp.git
cd unleash-mcp
npm installBuild the TypeScript project
Compile the TypeScript source to JavaScript so the server can be run with Node.js.
npm run buildSet required environment variables
Configure the Unleash connection details. UNLEASH_URL is your Unleash server endpoint and UNLEASH_API_TOKEN is the authentication token from your Unleash admin panel.
export UNLEASH_URL="https://your-unleash-instance.com"
export UNLEASH_API_TOKEN="your-unleash-api-token"
export MCP_TRANSPORT="stdio"Configure Claude Desktop or Claude Code
Add the server entry to your MCP client config. Use npx unleash-mcp if the package is published, or reference the built local file.
{
"mcpServers": {
"unleash": {
"command": "npx",
"args": ["-y", "unleash-mcp"],
"env": {
"UNLEASH_URL": "https://your-unleash-instance.com",
"UNLEASH_API_TOKEN": "your-unleash-api-token",
"MCP_TRANSPORT": "stdio",
"MCP_HTTP_PORT": "3001"
}
}
}
}Verify with a feature flag query
Restart Claude and ask it to list all feature flags or check the status of a specific flag to confirm the connection.
Unleash Examples
Client configuration
Claude Desktop or Cursor configuration using npx with required Unleash connection environment variables.
{
"mcpServers": {
"unleash": {
"command": "npx",
"args": ["-y", "unleash-mcp"],
"env": {
"UNLEASH_URL": "https://app.unleash-hosted.com/demo",
"UNLEASH_API_TOKEN": "*:development.your-token-here",
"MCP_TRANSPORT": "stdio",
"MCP_HTTP_PORT": "3001"
}
}
}
}Prompts to try
Example prompts for checking flags, listing projects, and managing feature toggles through Claude.
- "Check the status of the feature flag 'new-checkout-flow' in Unleash"
- "List all feature flags in the default Unleash project"
- "Is the 'dark-mode' feature flag currently enabled?"
- "Create a new feature flag called 'beta-dashboard' in the default project"
- "Show me all projects in my Unleash instance and their flag counts"Troubleshooting Unleash
401 Unauthorized when connecting to Unleash
Verify UNLEASH_API_TOKEN is a valid Unleash API token. In Unleash, generate a token under Admin > API Access. Ensure the token environment type (development/production) matches the environment you are querying.
Connection refused or ECONNREFUSED error
Check that UNLEASH_URL points to your running Unleash instance including the correct port if self-hosted (e.g., http://localhost:4242). Confirm the instance is running and the URL does not have a trailing slash.
npm run build fails with TypeScript errors
Ensure TypeScript v5.0+ is installed: npm install -g typescript. If errors persist, run npm install again to ensure all @types packages are installed before building.
Frequently Asked Questions about Unleash
What is Unleash?
Unleash is a Model Context Protocol (MCP) server that model context protocol (mcp) server implementation that integrates with unleash feature toggle system. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Unleash?
Follow the installation instructions on the Unleash GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Unleash?
Unleash works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Unleash free to use?
Yes, Unleash is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Unleash Alternatives — Similar Developer Tools Servers
Looking for alternatives to Unleash? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Unleash in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Unleash?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.