agentsclimarketplace

Masheev mcp

Skill masheev/skills/skills/masheev-mcp

Use when connecting Claude Code, Cursor, Copilot, or other AI coding tools to the Masheev API via MCP (Model Context Protocol). Covers installing the @masheev/mcp server, configuring authentication, and using the 4 available tools: list_api_endpoints, get_api_endpoint_schema, execute_api_endpoint, and get_api_categories. Use this skill when someone asks to "connect Masheev to Claude", "set up MCP for Masheev", or wants to manage Masheev from their AI coding environment.From its SKILL.md

Install
npx -y skills add masheev/skills --skill masheev-mcp

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.7 KB, 565 tokens by cl100k_base, as published. Nobody here has run it

Masheev MCP Server

Connect AI coding tools to Masheev via the Model Context Protocol. This lets Claude Code, Cursor, Copilot, and other MCP-compatible tools discover and call Masheev API endpoints.

Installation

npm install -g @masheev/mcp

Configuration

Claude Code / Claude Desktop

Add to your MCP config (.claude/mcp.json or Claude Desktop settings):

{
  "mcpServers": {
    "masheev": {
      "command": "masheev-mcp",
      "env": {
        "MASHEEV_API_BASE_URL": "https://api.masheev.com",
        "MASHEEV_API_TOKEN": "your_api_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "masheev": {
      "command": "npx",
      "args": ["-y", "@masheev/mcp"],
      "env": {
        "MASHEEV_API_BASE_URL": "https://api.masheev.com",
        "MASHEEV_API_TOKEN": "your_api_key_here"
      }
    }
  }
}

Available Tools

ToolDescription
list_api_endpointsSearch and browse all Masheev API endpoints. Accepts optional query, category, tag, requiresAuth filters.
get_api_endpoint_schemaGet the full OpenAPI schema for a specific endpoint (parameters, request/response types).
execute_api_endpointExecute an API endpoint with parameters. Handles routing (GET/DELETE -> query params, POST/PUT/PATCH -> body).
get_api_categoriesList all API endpoint categories and their descriptions.

Environment Variables

VariableRequiredDefaultDescription
MASHEEV_API_BASE_URLNohttp://localhost:3015Masheev API URL
MASHEEV_API_TOKENNo-API key for authenticated endpoints
API_PORTNo3015API port (alternative to full URL)

Example Usage

Once configured, ask your AI coding tool:

  • "List all Masheev API endpoints related to contacts"
  • "Show me the schema for creating a conversation"
  • "Create a new webhook subscription for message events"
  • "Get the billing balance for my organization"

The AI tool will use the MCP server to discover endpoints, understand their schemas, and execute them on your behalf.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.