Skip to content

dappros/ethora-mcp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Model Context Protocol (MCP) Server for Ethora Platform

Overview

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Ethora service.

Tools

  • 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).

Installation

Cursor

  1. Open Cursor SettingsMCP
  2. Click Add new global MCP server
  3. Add an entry for the GrowthBook MCP, following the pattern below:
{
  "mcpServers": {
    "ethora-mcp-server": {
      "command": "npx",
      "args": ["-y", "@ethora/mcp-server"]
    }
  }
}
  1. Save the settings.

You should now see a green active status after the server successfully connects!

VS Code

  1. Open User Settings (JSON)
  2. Add an MCP entry:
 "mcp": {
    "servers": {
      "ethora-mcp-server": {
        "command": "npx",
        "args": [
          "-y", "@ethora/mcp-server"
        ]
      }
    }
  }
  1. Save your settings.

Ethora MCP is now ready to use in VS Code.

Claude Desktop

  1. Open SettingsDeveloper
  2. Click Edit Config
  3. Open claude_desktop_config.json
  4. Add the following configuration:
{
  "mcpServers": {
    "ethora-mcp-server": {
      "command": "npx",
      "args": ["-y", "@ethora/mcp-server"]
    }
  }
}

Installing via Windsurf

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"
            ]
        }
    }
}

About

ethora-mcp-server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published