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-serverOr install globally:
npm install -g @assisters/mcp-server
assisters-mcpConfiguration
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
| Tool | Description |
|---|---|
search_assisters | Semantic + keyword search across assisters, creators, collections, and bundles |
list_categories | List all assister categories with counts |
get_trending_assisters | Top 10 trending assisters by score |
get_reviews | Reviews and ratings for a specific assister |
post_review | Post or update a review (rating 1–5) |
delete_review | Delete your own review for an assister |
Collection Tools
| Tool | Description |
|---|---|
list_my_collections | List your personal assister collections |
create_collection | Create a new personal collection |
list_assister_collections | List public or staff-pick curated collections |
create_assister_collection | Create a public collection in the marketplace |
Credit Tools
| Tool | Description |
|---|---|
get_credits_balance | Get your credit wallet balance and last 10 transactions |
list_credit_packages | List 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/).