VOOZH about

URL: https://apify.com/gochujang/mcp-config-generator

โ‡ฑ MCP Config Generator (Apify Actor โ†’ Claude / Cursor) ยท Apify


๐Ÿ‘ 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)

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

By handle (recommended)

{
"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 -eAPIFY_TOKEN=your-token -- npx -y @apify/actors-mcp-server --actors gochujang~smart-money-tracker

Related actors (same author)

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

You might also like

Hash Generator

automation-lab/hash-generator

This actor generates cryptographic hashes for input strings using MD5, SHA-1, SHA-256, and SHA-512 algorithms. Useful for data integrity checks, password hash generation, content fingerprinting, and deduplication.

๐Ÿ‘ User avatar

Stas Persiianenko

11

Bluesky Omni Scraper

actorpilot/bluesky-scraper

Extract posts, profiles, threads and followers from Bluesky via the official AT Protocol API. Search by keyword or hashtag, scrape author feeds, full threads and follower lists. No browser, no login. Export to JSON, CSV or Excel.

Nexus-IQ: Enterprise-Grade Competitive Intelligence

rexreus/Nexus-IQ

Extract competitive intelligence and sentiment analysis from 16 sources using AI-powered hierarchical summarization.

1

5.0

(1)

URL Shortener Expander

automation-lab/url-shortener-expander

This actor takes any list of shortened or redirecting URLs and follows each redirect step by step to reveal the final destination URL. It returns the complete redirect chain, redirect count, final status code, and final domain. Use it for link analysis, security verification, or marketing...

๐Ÿ‘ User avatar

Stas Persiianenko

15

Discord Mcp Server

goodboycoder/discord-mcp-server

Connect your AI assistant directly to Discord and automate messages, roles, and moderation without building or hosting custom bots.

9

5.0

(1)

Brand Narrative Intelligence MCP Server

ryanclinton/brand-narrative-intelligence-mcp

Brand reputation and disinformation detection intelligence for AI agents via the Model Context Protocol.

Docs MCP Server Starter โ€” Live Docs: Claude, Cursor & AI Agents

joeslade/docs-mcp-server-starter

Persistent MCP server that gives Claude, Cursor, and any MCP-compatible AI assistant queryable access to technical documentation. Indexes any docs site, exposes search and fetch tools over MCP, caches pages for speed. Ships with templates for Next.js, Tailwind, React, TypeScript, Prisma.

Omega Point Convergence MCP Server

ryanclinton/omega-point-convergence-mcp

MCP intelligence server for omega point convergence detection and analysis.

Rag Embedding Generator

labrat011/rag-embedding-generator

Generate vector embeddings from text or chunked datasets using OpenAI or Cohere. Chains with RAG Content Chunker for end-to-end RAG pipelines. Outputs raw vectors ready for any vector database.