S

Statsig

Query Statsig experiments and metrics.

·No reviews yet
Repo
Share:

About

Auto-generated

Statsig is a Model Context Protocol server in the Analytics & Monitoring category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Statsig.

What is the Statsig MCP's primary function?
The Statsig MCP allows developers to query Statsig experiments and retrieve metrics. It integrates Statsig's analytics and monitoring capabilities directly into your development environment via the Model Context Protocol.
How can I install the Statsig MCP in a client application?
Installation typically involves adding the Statsig MCP repository URL to your MCP client's settings. For example, in Claude Desktop, you would add 'https://github.com/statsig-io/statsig-mcp' as a custom MCP repository.
Does the Statsig MCP require authentication?
Yes, the Statsig MCP requires an API key for authentication. This key grants the MCP access to your Statsig account's data and ensures secure communication.
What kind of data can I access with the Statsig MCP?
With the Statsig MCP, you can access data related to your Statsig experiments and metrics. This includes experiment results, user segments, and performance indicators, facilitating data-driven development.
Are there any prerequisites for using the Statsig MCP?
A prerequisite for using the Statsig MCP is an active Statsig account and a valid API key. You will also need an MCP-compatible client application to manage and interact with the MCP.
Is there a cost associated with using the Statsig MCP?
The Statsig MCP itself is community-provided and open-source, so its direct use does not incur a fee. However, using the underlying Statsig platform may have associated costs, depending on your Statsig plan.

Install Statsig

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "statsig": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-statsig"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "statsig": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-statsig"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "statsig": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-statsig"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.