Assisters API
MCP Server

MCP Server

Use the Assisters MCP server to browse the marketplace, manage collections, and check credits from any MCP-compatible AI client

Assisters MCP Server

The Assisters MCP (Model Context Protocol) server lets you access the Assisters marketplace, collections, and credit wallet from any MCP-compatible AI client — including Claude Code, Claude Desktop, and Cursor.

Installation

npx @assisters/mcp-server

Or install globally:

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

Configuration

Claude Code / Claude Desktop

Add to your claude_desktop_config.json (or .claude/settings.json for Claude Code):

{
  "mcpServers": {
    "assisters": {
      "command": "npx",
      "args": ["-y", "@assisters/mcp-server"],
      "env": {
        "ASSISTERS_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "assisters": {
      "command": "npx",
      "args": ["-y", "@assisters/mcp-server"],
      "env": {
        "ASSISTERS_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

Marketplace Tools

ToolDescription
search_assistersSemantic + keyword search across assisters, creators, collections, and bundles
list_categoriesList all assister categories with counts
get_trending_assistersTop 10 trending assisters by score
get_reviewsReviews and ratings for a specific assister
post_reviewPost or update a review (rating 1–5)
delete_reviewDelete your own review for an assister

Collection Tools

ToolDescription
list_my_collectionsList your personal assister collections
create_collectionCreate a new personal collection
list_assister_collectionsList public or staff-pick curated collections
create_assister_collectionCreate a public collection in the marketplace

Credit Tools

ToolDescription
get_credits_balanceGet your credit wallet balance and last 10 transactions
list_credit_packagesList available credit top-up packages with pricing

Example Usage

Once connected, you can ask your AI client:

"Search for assisters that help with code review"

"Show me my current credit balance"

"What are the trending assisters this week?"

"Create a collection called 'My Dev Tools' with these assisters: ..."

Authentication

Set the ASSISTERS_API_KEY environment variable to your Assisters API key. Generate one from assisters.dev/dashboard/api-keys.

The MCP server uses this key for all API calls on your behalf. Treat it like a password — never commit it to source control.

Transport

The server uses stdio transport — it communicates over stdin/stdout, which is the standard MCP transport for local tools.

Source

The MCP server is open source: github.com/misaradmin/assisters (packages/mcp-server/).