The Model Context Protocol (MCP) Server enables integration between MCP clients and the Ethora service.
- Login user
- Register user
- Create application
- Delete application
- Update application
- List applications
Before you begin, ensure you have the following:
- Node.js installed on your system (recommended version 18.x or higher).
- Open Cursor Settings → MCP
- Click Add new global MCP server
- Add an entry for the GrowthBook MCP, following the pattern below:
{
"mcpServers": {
"ethora-mcp-server": {
"command": "npx",
"args": ["-y", "@ethora/mcp-server"]
}
}
}
- Save the settings.
You should now see a green active status after the server successfully connects!
- Open User Settings (JSON)
- Add an MCP entry:
"mcp": {
"servers": {
"ethora-mcp-server": {
"command": "npx",
"args": [
"-y", "@ethora/mcp-server"
]
}
}
}
- Save your settings.
Ethora MCP is now ready to use in VS Code.
- Open Settings → Developer
- Click Edit Config
- Open
claude_desktop_config.json
- Add the following configuration:
{
"mcpServers": {
"ethora-mcp-server": {
"command": "npx",
"args": ["-y", "@ethora/mcp-server"]
}
}
}
To install ethora-mcp-server in Windsurf IDE application, Cline should use NPX:
npx -y @ethora/mcp-server
Your mcp_config.json file should be configured similar to:
{
"mcpServers": {
"ethora-mcp-server": {
"command": "npx",
"args": [
"-y",
"@ethora/mcp-server"
]
}
}
}