MCP Config Generator (Apify Actor → Claude / Cursor) avatar

MCP Config Generator (Apify Actor → Claude / Cursor)

Pricing

Pay per usage

Go to Apify Store
MCP Config Generator (Apify Actor → Claude / Cursor)

MCP Config Generator (Apify Actor → Claude / Cursor)

Given any Apify actor ID, generates ready-to-paste Model Context Protocol (MCP) server configs for Claude Desktop, Claude Code, and Cursor. Wraps the actor as a tool Claude can call directly. $0.005 per config.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

MCP Config Generator

Given any Apify actor ID, generates ready-to-paste Model Context Protocol (MCP) server configs for Claude Desktop, Claude Code, and Cursor. Wraps the actor as a tool Claude can call directly. $0.005 per config.


Why this exists

Model Context Protocol (MCP) is the open standard for letting LLM clients (Claude Desktop, Claude Code, Cursor) call external tools. Apify has @apify/actors-mcp-server — but figuring out the exact config snippet for each client is tedious.

This actor takes an actor ID (or handle) and emits the JSON config block you paste into:

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Claude Code: ~/.claude/config.json
  • Cursor: Settings > MCP

Now any of those clients can directly call the actor — Claude will pick it up as a tool, formulate the input, and surface the result.


What you get

{
"actor_id": "gochujang~smart-money-tracker",
"title": "Smart Money Wallet Tracker (Free Nansen Alt, Multi-Chain)",
"name": "smart-money-tracker",
"username": "gochujang",
"is_public": true,
"claude_desktop_config": {
"mcpServers": {
"apify-smart-money-tracker": {
"command": "npx",
"args": ["-y", "@apify/actors-mcp-server", "--actors", "gochujang~smart-money-tracker"],
"env": {"APIFY_TOKEN": "APIFY_TOKEN_HERE"}
}
}
},
"claude_code_config": { ... },
"cursor_config": { ... },
"tool_card": {
"tool_name": "apify_smart_money_tracker",
"title": "...",
"description": "...",
"handle": "gochujang~smart-money-tracker",
"store_url": "https://apify.com/gochujang/smart-money-tracker"
},
"install_instructions": [
"1. Get an Apify token at https://console.apify.com/account/integrations",
"2. Replace APIFY_TOKEN_HERE with your token in the config below",
"3. Paste into your MCP client config file",
"4. Restart your client",
"5. Claude will now be able to call this actor as a tool"
]
}

The full Claude Desktop config is also saved as claude_desktop_config.json in the run's key-value store.


Quick start

{
"actorId": "gochujang~smart-money-tracker"
}

By internal ID

{
"actorId": "UOl6ZDRUqwzUJ7uSB"
}

Username + name parts

{
"username": "gochujang",
"name": "smart-money-tracker"
}

Resolve a private actor (requires your token)

{
"actorId": "your-username~your-actor",
"apifyToken": "apify_api_..."
}

Use cases

  1. Wrap any Apify actor as a Claude tool — Hook the entire Apify Store into Claude
  2. Onboarding — Give clients a one-paste config to start using your actors
  3. Cursor integration — Let Cursor IDE call data-gathering actors during code generation
  4. MCP marketplace pre-baked configs — Ship ready-to-install MCP packages

Pricing

Pay-Per-Event: $0.005 per config generated.


How to install the generated config

After getting the output:

  1. Copy the claude_desktop_config JSON block
  2. Open ~/Library/Application Support/Claude/claude_desktop_config.json
  3. Merge (or replace) the mcpServers section
  4. Replace APIFY_TOKEN_HERE with your real token (get one here)
  5. Restart Claude Desktop
  6. The actor will appear as a tool — try asking Claude to use it

For Claude Code, you can also run:

$claude mcp add apify-smart-money-tracker -e APIFY_TOKEN=your-token -- npx -y @apify/actors-mcp-server --actors gochujang~smart-money-tracker

This actor is meta-tooling: it makes our other 50+ actors callable from Claude. Pair with any of them.


Feedback

A short review helps Claude/Cursor users find it: Leave a review on Apify Store