npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@edgee/mcp-server-edgee

v0.2.0

Published

MCP server for interacting with Edgee API

Downloads

44

Readme

MCP Server for the Edgee API, enabling organization management, project operations, component management, and user administration through the Model Context Protocol.

Features

  • 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

Tools

Organization Tools

  • 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

Project Tools

  • 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
  • edgee-getProjectCounters: Get statistics for a project
  • edgee-listProjectDomains: List domains for a project
  • edgee-createProjectDomain: Create a new domain for a project
  • edgee-listProjectComponents: List components for a project

Component Tools

  • edgee-listPublicComponents: List all public components
  • edgee-listOrganizationComponents: List components for an organization
  • edgee-getComponentByUuid: Get a component by UUID
  • edgee-getComponentBySlug: Get a component by slug
  • edgee-createComponent: Create a new component
  • edgee-createComponentVersion: Create a new component version

User Tools

  • edgee-getMe: Get the current user
  • edgee-getUser: Get a user by ID
  • edgee-listInvitations: List all invitations
  • edgee-createInvitation: Create a new invitation
  • edgee-deleteInvitation: Delete an invitation
  • edgee-listApiTokens: List all API tokens
  • edgee-createApiToken: Create a new API token
  • edgee-deleteApiToken: Delete an API token
  • edgee-getUploadPresignedUrl: Get a presigned URL for uploading files

Setup

Personal Access Token

Create an Edgee Personal Access Token:

  • Go to API tokens (in Account Settings > API Tokens)
  • Create a token
    • Give a name to this token
    • Select a validity period of the token you're about to create. If no duration is selected, the token will never expire.
  • Copy the generated token

Installation

You can use this MCP server in several ways:

NPX (Recommended)

npx @edgee/mcp-server-edgee

Global Installation

npm install -g @edgee/mcp-server-edgee

Local Installation

npm install @edgee/mcp-server-edgee

Usage with Claude Desktop

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

Examples

List Organizations

Use the edgee-listOrganizations tool to list all your organizations.

Create a Project

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"

Get Project Components

Use the edgee-listProjectComponents tool to list all components for project "proj_123456".

Create an Invitation

Use the edgee-createInvitation tool to invite a user to your organization:
- organization_id: "org_123456"
- email: "[email protected]"
- role: "member"

Development

Building from Source

git clone https://github.com/edgee-cloud/mcp-server-edgee.git
cd mcp-server-edgee
npm install
npm run build

License

Apache-2.0