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 🙏

© 2026 – Pkg Stats / Ryan Hefner

dspot-erp-mcp-server

v1.0.15

Published

MCP server for DSpot ERP (Ever/Gauzy API)

Downloads

2,003

Readme

DSpot ERP - MCP Server

Model Context Protocol (MCP) server built with TypeScript and the official @modelcontextprotocol/sdk. Exposes tools and resources over stdio for use with Cursor, Claude Desktop, or other MCP clients.

Requirements

  • Node.js >= 20

Installation

npm install

Running

Development (with tsx):

npm run dev

Production (compiled):

npm run build
npm start

The server communicates via stdin/stdout (stdio). An MCP client (e.g. Cursor) spawns this process and communicates with it via JSON-RPC.

Cursor Configuration

In Cursor's MCP settings (e.g. .cursor/mcp.json or MCP preferences), add:

{
  "mcpServers": {
    "dspot-erp": {
      "command": "npx",
      "args": [
        "dspot-erp-mcp-server"
      ],
      "env": {
        "API_BASE_URL": "base-url:port",
        "AUTH_TOKEN": "bearer-token",
        "TENANT_ID": "tenant-id",
        "ORGANIZATION_ID": "organization-id"
      }
    }
  }
}

Or using the compiled binary:

{
  "mcpServers": {
    "dspot-erp": {
      "command": "node",
      "args": [
        "/full/path/to/dspot-erp-mcp-server/dist/index.js"
      ],
      "env": {
        "API_BASE_URL": "base-url:port",
        "AUTH_TOKEN": "bearer-token",
        "TENANT_ID": "tenant-id",
        "ORGANIZATION_ID": "organization-id"
      }
    }
  }
}

Environment Variables (ERP API)

| Variable | Description | Default | |----------|-------------|---------| | API_BASE_URL | ERP base URL (without /api) | required | | AUTH_TOKEN | Bearer token for the API | required | | ORGANIZATION_ID | Default organization UUID | — | | TENANT_ID | Default tenant UUID | — |

Example in Cursor (MCP server config):

"env": {
  "API_BASE_URL": "https://your-erp-host.com:3000",
  "AUTH_TOKEN": "your-jwt-token",
  "ORGANIZATION_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "TENANT_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

What This Server Provides

  • Tool get_organization_projects: Lists organization projects (GET /api/organization-projects). Requires organizationId and tenantId (UUIDs).
  • Tool get_organization_teams: Lists organization teams (GET /api/organization-team/pagination). Optional: organizationId, tenantId, skip (default: 0), take (default: 10, max: 100). Includes members (role, employee.user), tags, projects.
  • Tool create_organization_team: Creates a team (POST /api/organization-team). Required: name. Optional: memberIds, managerIds (arrays of employee UUIDs), tagIds (array of tag UUIDs), imageId, organizationId, tenantId.
  • Tool update_organization_team: Updates a team (PUT /api/organization-team/{teamId}). Required: teamId. Optional: name, memberIds, managerIds, tagIds, imageId, organizationId, tenantId.
  • Tool delete_organization_team: Deletes a team (DELETE /api/organization-team/{teamId}). Required: teamId. Optional: organizationId, tenantId.
  • Tool get_tags: Lists organization tags (GET /api/tags). Optional: organizationId, tenantId. Includes tagType relation.
  • Tool create_tag: Creates a tag (POST /api/tags). Required: name. Optional: description, color, organizationId, tenantId, tagTypeId.
  • Tool update_tag: Updates a tag (PUT /api/tags/{tagId}). Required: tagId. Optional: name, description, color, organizationId, tenantId, tagTypeId.
  • Tool delete_tag: Deletes a tag (DELETE /api/tags/{tagId}). Required: tagId. Optional: organizationId, tenantId.
  • Tool get_tasks: Lists tasks/cards (GET /api/tasks/pagination). Optional args: organizationId, tenantId, projectId, title, skip (default: 0), take (default: 10, max: 100).
  • Tool update_task: Updates a task/card (PUT /api/tasks/{taskId}). Required: taskId. Optional: organizationId, tenantId, title, description, status, taskStatusId, projectId.
  • Tool create_task: Creates a task/card (POST /api/tasks). Required: title, projectId. Optional: organizationId, tenantId, description, status, taskStatusId, parentId, dueDate, memberIds (array of assignee UUIDs).
  • Tool delete_task: Deletes a task/card (DELETE /api/tasks/{taskId}). Required: taskId. Optional: organizationId, tenantId.
  • Tool get_employees: Lists organization employees (GET /api/employee/pagination). Optional args: organizationId, tenantId, skip (default: 0), take (default: 10, max: 100). Includes relations: user, tags, organizationEmploymentTypes.
  • Tool get_employee_working: Working/timesheets in a date range. Without employeeIds/projectIds: employee list with working context (GET /api/employee/working). With employeeIds and/or projectIds: time-log entries filtered by employee and/or project (GET /api/timesheet/time-log/chunk). Args: startDate, endDate, optional organizationId, tenantId, employeeIds, projectIds (arrays of UUIDs), withUser, timeZone, activityLevelStart/activityLevelEnd.
  • Tool get_timesheet_statistics: Timesheet statistics/counts (GET /api/timesheet/statistics/counts). Required: startDate, endDate. Optional: timeZone (e.g. Europe/Minsk), todayStart/todayEnd, employeeIds, organizationId, tenantId. Durations (weekDuration, todayDuration) are in seconds.
  • Resource info://server: Server information in JSON (read-only).

References