Edgee MCP Server

MCP server for interacting with Edgee API

Local serverstdioTypeScript

What is the Edgee MCP server?

If you already use Edgee, the edgee mcp server is the piece that lets your assistant work with it directly. MCP server for interacting with Edgee API.

What the server does

  • Organization Management — Create, read, update, and delete organizations
  • Project Operations — Manage projects, domains, components, and statistics
  • Component Management — Work with components, versions, and settings
  • User Administration — Manage users, invitations, and API tokens
  • Comprehensive Error Handling — Clear error messages for common issues
  • Type-Safe API — Built with TypeScript for robust type checking

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • edgee-listOrganizations — List all organizations with optional filtering
  • edgee-getMyOrganization — Get your personal organization
  • edgee-getOrganization — Get an organization by ID
  • edgee-createOrganization — Create a new organization
  • edgee-updateOrganization — Update an existing organization
  • edgee-deleteOrganization — Delete an organization
  • edgee-listOrganizationUsers — List users of an organization
  • edgee-listProjects — List all projects with optional filtering
  • edgee-getProject — Get a project by ID
  • edgee-createProject — Create a new project
  • edgee-updateProject — Update an existing project
  • edgee-deleteProject — Delete a project

Installation

Installation goes through your MCP client rather than a global install: point it at @edgee/mcp-server-edgee on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

Configuration is passed through the environment: EDGEE_TOKEN, YOUR_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Edgee's toolset — edgee-listOrganizations, edgee-getMyOrganization, edgee-getOrganization and 11 more — is a fair guide to whether it matches your workflow. It is maintained by edgee-cloud; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Edgee.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
edgee-listOrganizationsList all organizations with optional filtering
edgee-getMyOrganizationGet your personal organization
edgee-getOrganizationGet an organization by ID
edgee-createOrganizationCreate a new organization
edgee-updateOrganizationUpdate an existing organization
edgee-deleteOrganizationDelete an organization
edgee-listOrganizationUsersList users of an organization
edgee-listProjectsList all projects with optional filtering
edgee-getProjectGet a project by ID
edgee-createProjectCreate a new project
edgee-updateProjectUpdate an existing project
edgee-deleteProjectDelete a project
edgee-getProjectCountersGet statistics for a project
edgee-listProjectDomainsList domains for a project

How to install the Edgee MCP server

{
  "mcpServers": {
    "server-edgee": {
      "command": "npx",
      "args": ["-y", "@edgee/mcp-server-edgee"],
      "env": {
        "EDGEE_TOKEN": "your-value",
        "YOUR_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
EDGEE_TOKENCredential the server authenticates with.Yes
YOUR_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Edgee to edgee-listOrganizations.
  • Use Edgee to edgee-getMyOrganization.
  • Use Edgee to edgee-getOrganization.

Frequently asked questions

It connects Edgee to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (edgee-listOrganizations, edgee-getMyOrganization, edgee-getOrganization, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Edgee directly.