OpenFeature MCP Server Logo

OpenFeature MCP Server

Official

Provides OpenFeature SDK installation guidance for various programming languages and enables feature...

8 views
0 installs
Updated Jan 21, 2026
Not audited
Provides OpenFeature SDK installation guidance for various programming languages and enables feature flag evaluation through the OpenFeature Remote Evaluation Protocol (OFREP). Supports multiple AI clients and can connect to any OFREP-compatible feature flag service.
  1. Click the "Install Now" button to open the FastMCP connection interface (the place where the MCP server connection and environment variables are configured).
  2. In the FastMCP connection interface find the environment / secrets section and add the OFREP endpoint URL: set OPENFEATURE_OFREP_BASE_URL (or OFREP_BASE_URL) to the base URL provided by your OFREP-compatible flag service (e.g., https://flags.example.com). (openfeature.dev)
  3. Obtain a bearer token or API key from your flag management system: sign in to your flag provider → open Account / API / Integrations / Service tokens → create a new token (give it only the permissions needed for flag evaluation) → copy the token.
    • If the provider issues a bearer token, paste it into OPENFEATURE_OFREP_BEARER_TOKEN (or OFREP_BEARER_TOKEN).
    • If the provider issues an API key, paste it into OPENFEATURE_OFREP_API_KEY (or OFREP_API_KEY). (openfeature.dev)
  4. If the FastMCP interface accepts inline auth fields for an individual call, you may instead provide the token there (auth.bearer_token or auth.api_key) for one-off tests; otherwise prefer the environment variables above so the MCP can use them for all calls. (glama.ai)
  5. (Optional) Instead of environment variables, you can create a local config file at ~/.openfeature-mcp.json with the OFREP settings and point the MCP to it with OPENFEATURE_MCP_CONFIG_PATH. Example file contents:
    {
    "OFREP": {
    "baseUrl": "https://flags.example.com",
    "bearerToken": "",
    "apiKey": ""
    }
    } (openfeature.dev)
  6. Save the FastMCP connection settings in the interface. Use the MCP's OFREP flag-evaluation tool (ofrep_flag_eval) or run a small test evaluation to confirm the base URL and token/api key are correct. If the test fails, verify the exact endpoint and token permissions in your flag provider's docs. (openfeature.dev)
  7. Secure the credentials: treat tokens/API keys as secrets (do not commit them to source control). If available, store them in your platform’s secrets manager and reference them from FastMCP rather than pasting into plaintext fields.

Quick Start

View on GitHub

More for API Development

View All →

More for Developer Tools

View All →

Similar MCP Servers

M

MCPFinder

Enables AI assistants to discover and integrate new capabilities by providing tools for searching, retrieving details, and configuring MCP servers across various applications.

Developer Tools
Apifox MCP Server

Apifox MCP Server

Official

A server that connects AI coding assistants like Cursor and Cline to Apifox API definitions, allowing developers to implement API interfaces through natural language commands.

API Development Developer Tools
27
0

Report Issue

Thank you! Your issue report has been submitted successfully.