by edgee-cloud
Provides organization management, project operations, component handling, and user administration via the Model Context Protocol.
Edgee MCP Server offers a set of TypeScript‑based APIs and CLI tools that let developers create, read, update, and delete organizations, projects, components, and users. It serves as a backend for the Edgee platform, exposing operations through the Model Context Protocol.
npx
:
npx -y @edgee/mcp-server-edgee
EDGEE_TOKEN
.claude_desktop_config.json
(or any MCP‑compatible client) and invoke the provided tools such as edgee-listOrganizations
, edgee-createProject
, etc.Q: Which command should I use to run the server?
A: Use npx -y @edgee/mcp-server-edgee
for the simplest experience.
Q: How do I authenticate the server?
A: Set the environment variable EDGEE_TOKEN
to a personal access token created in your Edgee account.
Q: Can I install the server globally?
A: Yes, npm install -g @edgee/mcp-server-edgee
works, but npx
is recommended.
Q: What programming language is the API written in? A: The server is implemented in TypeScript, providing strong type safety.
Q: Are there any rate limits? A: Rate limits are defined by the Edgee platform; refer to the Edgee documentation for details.
MCP Server for the Edgee API, enabling organization management, project operations, component management, and user administration through the Model Context Protocol.
edgee-listOrganizations
: List all organizations with optional filteringedgee-getMyOrganization
: Get your personal organizationedgee-getOrganization
: Get an organization by IDedgee-createOrganization
: Create a new organizationedgee-updateOrganization
: Update an existing organizationedgee-deleteOrganization
: Delete an organizationedgee-listOrganizationUsers
: List users of an organizationedgee-listProjects
: List all projects with optional filteringedgee-getProject
: Get a project by IDedgee-createProject
: Create a new projectedgee-updateProject
: Update an existing projectedgee-deleteProject
: Delete a projectedgee-getProjectCounters
: Get statistics for a projectedgee-listProjectDomains
: List domains for a projectedgee-createProjectDomain
: Create a new domain for a projectedgee-listProjectComponents
: List components for a projectedgee-listPublicComponents
: List all public componentsedgee-listOrganizationComponents
: List components for an organizationedgee-getComponentByUuid
: Get a component by UUIDedgee-getComponentBySlug
: Get a component by slugedgee-createComponent
: Create a new componentedgee-createComponentVersion
: Create a new component versionedgee-getMe
: Get the current useredgee-getUser
: Get a user by IDedgee-listInvitations
: List all invitationsedgee-createInvitation
: Create a new invitationedgee-deleteInvitation
: Delete an invitationedgee-listApiTokens
: List all API tokensedgee-createApiToken
: Create a new API tokenedgee-deleteApiToken
: Delete an API tokenedgee-getUploadPresignedUrl
: Get a presigned URL for uploading filesCreate an Edgee Personal Access Token:
You can use this MCP server in several ways:
npx @edgee/mcp-server-edgee
npm install -g @edgee/mcp-server-edgee
npm install @edgee/mcp-server-edgee
To use this with Claude Desktop, add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"edgee": {
"command": "npx",
"args": [
"-y",
"@edgee/mcp-server-edgee"
],
"env": {
"EDGEE_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
Use the edgee-listOrganizations tool to list all your organizations.
Use the edgee-createProject tool to create a new project with the following parameters:
- organization_id: "org_123456"
- slug: "my-new-project"
- description: "This is my new project"
Use the edgee-listProjectComponents tool to list all components for project "proj_123456".
Use the edgee-createInvitation tool to invite a user to your organization:
- organization_id: "org_123456"
- email: "user@example.com"
- role: "member"
git clone https://github.com/edgee-cloud/mcp-server-edgee.git
cd mcp-server-edgee
npm install
npm run build
Apache-2.0
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "edgee": { "command": "npx", "args": [ "-y", "@edgee/mcp-server-edgee" ], "env": { "EDGEE_TOKEN": "<YOUR_TOKEN>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.