🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@modusop/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@modusop/mcp-server

MCP server for ModusOp — client context, tasks, time tracking, and retainer status for AI assistants.

Source
npmnpm
Version
0.2.4
Version published
Weekly downloads
22
-63.33%
Maintainers
1
Weekly downloads
 
Created
Source

ModusOp MCP Server

MCP server for ModusOp — gives AI assistants access to your client context, tasks, time tracking, and retainer budgets.

Tools

ToolDescription
search_projectsSearch projects by name
search_clientsSearch clients by name
get_client_contextGet project, client, and retainer info
get_tasksList tasks for a project (filter by status)
create_taskCreate a new task
start_timerStart a timer on a task
stop_timerStop the running timer
get_retainer_statusCheck retainer hours used/remaining

Required Token Scopes

When you create an API token in ModusOp → Settings → API Tokens, grant these scopes:

  • read — needed for search_projects, search_clients, get_client_context, get_tasks, get_retainer_status, and the current-timer check used by stop_timer.
  • write — needed for create_task, start_timer, and stop_timer.

A token missing the required scope returns HTTP 403 with Insufficient permissions for this action.. Most setups want both scopes.

Setup

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "modusop": {
      "command": "npx",
      "args": ["@modusop/mcp-server"],
      "env": {
        "MODUSOP_API_TOKEN": "your-api-token"
      }
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "modusop": {
      "command": "npx",
      "args": ["@modusop/mcp-server"],
      "env": {
        "MODUSOP_API_TOKEN": "your-api-token"
      }
    }
  }
}

Claude Code

claude mcp add modusop -- npx @modusop/mcp-server

Set MODUSOP_API_TOKEN in your environment.

Configuration

Environment VariableDefaultDescription
MODUSOP_API_TOKEN(required)Your ModusOp API token
MODUSOP_API_URLhttps://modusop.app/api/v1API base URL

Requirements

  • A ModusOp account with an API token
  • Node.js 18+

Keywords

mcp

FAQs

Package last updated on 27 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts