Codify MCP
MCP server for custom automation tools using
Part of Project Codify
Project Codify
Complete end-to-end browser automation pipeline running inside browser (or locally). Codify and replay browser actions as robust (deterministic) and reusable scripts. From rapid prototyping and quick automation scripts to sophisticated deployments at scale.
Login - reusable authentication sessions - reusable secure login (TBD) ☑️
Agent - turn scripts into browser actions - code or text script (future) ✅
Coder - turn browser actions into scripts (TBD - currently integrated) ✅
Robot - automation engine for scalability (TBD - currently integrated) ✅
MCP - automations become reusable tools you can reuse through AI ✅
More is on the way... Give it a shot 🎬 or join the list to follow the project! 🔔
What It Does
Model Context Protocol (MCP) server that lets AI assistants (e.g. Claude, Cursor, VS Code) execute browser automation tasks via Apify Agent. Tools are passed as clean JSON arguments — one per line. No manual setup or file creation.
Usage
Run directly using npx:
Or install locally:
Quick Start
1. Apify Token
Optional - you can also place the token inside the MCP server JSON later.
This saves your token to ~/.apify/auth.json.
Alternatively, set the environment variable:
2. Create a Tool
Apify Coder can turn casual browser actions into reusable AI tools. Currently, this feature is also integrated in Apify Agent
Export a tool and append the result as a JSON string to the MCP server args field or ask your AI to do it for you.
3. Run the Server
Or with multiple tools:
4. Connect to Claude Desktop (or Cursor/VS Code)
Edit your Claude Desktop config:
macOS/Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Restart Claude. Your tools are now available to the AI assistant.
Tool Definition Reference
Basic Structure
Implementation Details
script: Playwright automation code. Receives
inputsobject with user-provided parameters andpageobject for browser automation.actorId: Apify actor to execute. Defaults to
cyberfly/apify-agent.
Input Schema Examples
Simple text input:
Optional field:
Enum (dropdown):
Usage Patterns
Single Tool (Development)
Multiple Tools (Production)
With Environment Variable
With npm link (Local Testing)
Authentication
Token resolution order:
APIFY_TOKEN environment variable (if set and not empty)
~/.apify/auth.json (from
apify loginCLI command)Error: No token found, tool execution will fail with clear message
Troubleshooting
"No valid tools in arguments"
Ensure you're passing valid JSON strings as arguments:
"Invalid or missing Apify token"
Ensure authentication is set up:
"Tool execution failed"
Check your Playwright script syntax. The script must be valid JavaScript that:
Has access to
inputs(user-provided parameters)Has access to
page(Playwright page object)Returns a value or object
Large Tool Sets (50+ tools)
If you have many tools, consider splitting into multiple MCP servers:
Development
Running Locally
Structure
Key Design Principles
No files: Tools passed entirely via argv; no config files or manual setup.
No base64: Clean, readable command lines; no obfuscation.
Self-contained: All dependencies bundled; works offline once installed.
Stateless: Each invocation is independent; easy horizontal scaling.
Token from env/CLI: Seamless auth experience; respects Apify ecosystem conventions.
License
Apache-2.0
Contributing
Issues and PRs welcome at github.com/cybairfly/apify-agent