Add Agent Skills and MCPC documentation page#2338
Add Agent Skills and MCPC documentation page#2338marcel-rbro wants to merge 5 commits intomasterfrom
Conversation
New integration page documenting Apify Agent Skills and MCPC (universal MCP CLI client) for AI coding assistants. Covers installation, setup with Claude Code/Cursor/VS Code, MCPC commands, and session management. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Address 7 style guide violations: expand meta description to meet 140-char minimum, expand MCP acronym on first use, remove sales language, fix passive voice, add Tabs groupId, improve tone and link text. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| --- | ||
| title: Agent Skills and MCPC | ||
| sidebar_label: Agent Skills and MCPC | ||
| description: Use Apify Agent Skills and MCPC to give AI coding assistants web scraping, data extraction, and automation capabilities through MCP servers. |
There was a problem hiding this comment.
| description: Use Apify Agent Skills and MCPC to give AI coding assistants web scraping, data extraction, and automation capabilities through MCP servers. | |
| description: Use Apify Agent Skills with MCP CLI (mcpc) to give AI agents web scraping, data extraction, and automation capabilities. |
| import Tabs from '@theme/Tabs'; | ||
| import TabItem from '@theme/TabItem'; | ||
|
|
||
| [Apify Agent Skills](https://github.com/apify/agent-skills) give AI coding assistants pre-built capabilities for web scraping, data extraction, and automation. Skills work with Claude Code, Cursor, Codex, Gemini CLI, and other AI tools that support [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). |
There was a problem hiding this comment.
| [Apify Agent Skills](https://github.com/apify/agent-skills) give AI coding assistants pre-built capabilities for web scraping, data extraction, and automation. Skills work with Claude Code, Cursor, Codex, Gemini CLI, and other AI tools that support [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). | |
| [Apify Agent Skills](https://github.com/apify/agent-skills) give AI agents pre-built capabilities for web scraping, data extraction, and building Apify Actors. Skills work with Claude Code, Cursor, Codex, Gemini CLI, and other coding agents that support [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). |
|
|
||
| [Apify Agent Skills](https://github.com/apify/agent-skills) give AI coding assistants pre-built capabilities for web scraping, data extraction, and automation. Skills work with Claude Code, Cursor, Codex, Gemini CLI, and other AI tools that support [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). | ||
|
|
||
| [MCPC](https://github.com/apify/mcp-cli) is a command-line client for MCP that connects your terminal and AI agents to any MCP server - including Apify's. |
There was a problem hiding this comment.
| [MCPC](https://github.com/apify/mcp-cli) is a command-line client for MCP that connects your terminal and AI agents to any MCP server - including Apify's. | |
| [MCPC](https://github.com/apify/mcp-cli) is a universal command-line client for MCP that connects your AI agents to any MCP server - including Apify's. This CLI utility enables more token efficient tool calling, and less context bloat while working with MCP servers. |
|
|
||
| [MCPC](https://github.com/apify/mcp-cli) is a command-line client for MCP that connects your terminal and AI agents to any MCP server - including Apify's. | ||
|
|
||
| Together, they let you add Apify's scraping and automation tools to any AI coding assistant with a single command. |
There was a problem hiding this comment.
| Together, they let you add Apify's scraping and automation tools to any AI coding assistant with a single command. | |
| Together, they let you add Apify's scraping and automation tools to any AI agent with a single command. |
|
|
||
| - An [Apify account](https://console.apify.com/sign-up) with an [API token](https://console.apify.com/account#/integrations) | ||
| - [Node.js](https://nodejs.org/) version 20.6 or later | ||
| - An AI coding assistant that supports MCP (Claude Code, Cursor, VS Code with Copilot, Codex, Gemini CLI) |
There was a problem hiding this comment.
| - An AI coding assistant that supports MCP (Claude Code, Cursor, VS Code with Copilot, Codex, Gemini CLI) | |
| - An AI coding agent that supports MCP (Claude Code, Cursor, VS Code with Copilot, Codex, Gemini CLI etc.) |
|
|
||
| The [apify/agent-skills](https://github.com/apify/agent-skills) repository contains official Apify skills. The community-maintained [apify/awesome-skills](https://github.com/apify/awesome-skills) repository contains additional skills contributed by the community. | ||
|
|
||
| :::note Skills consolidation |
There was a problem hiding this comment.
we can remove this skill consolidation comment, it's not needed and will be done by time we publish this
|
|
||
| ### How skills work | ||
|
|
||
| Each skill is a Markdown file (`SKILL.md`) that describes a capability and its tools. When an AI coding assistant opens your project, it reads these files and gains the ability to: |
There was a problem hiding this comment.
| Each skill is a Markdown file (`SKILL.md`) that describes a capability and its tools. When an AI coding assistant opens your project, it reads these files and gains the ability to: | |
| Each skill is a Markdown file (`SKILL.md`) that describes a domain-specific capability and tools the agent should use to execute the desired task. Skills can be invoked directly by `/slash-commands` and agents can also load them dynamically based on your prompt. Apify Agent Skills give AI coding assistants the ability to: |
| - Search and run Actors from [Apify Store](https://apify.com/store) | ||
| - Extract data from websites, social media, and e-commerce platforms | ||
| - Export results as JSON or CSV, or display them in chat | ||
|
|
There was a problem hiding this comment.
| - [Develop, test & publish Actors](https://docs.apify.com/platform/actors/development/quick-start/build-with-ai) in Apify Store | |
| - Extract data from websites, social media, and e-commerce platforms | ||
| - Export results as JSON or CSV, or display them in chat | ||
|
|
||
| Skills use [MCPC](#install-mcpc) under the hood to communicate with MCP servers and execute Apify Actor calls. |
There was a problem hiding this comment.
| Skills use [MCPC](#install-mcpc) under the hood to communicate with MCP servers and execute Apify Actor calls. | |
| Skills use [MCPC](#install-mcpc) under the hood to communicate with Apify MCP server and execute Actor calls. |
|
|
||
| ## Install MCPC | ||
|
|
||
| MCPC is the command-line bridge between AI agents and MCP servers. Install it globally: |
There was a problem hiding this comment.
| MCPC is the command-line bridge between AI agents and MCP servers. Install it globally: | |
| [MCP CLI (mcpc)](https://blog.apify.com/introducing-mcpc-universal-mcp-cli-client/) is the command-line bridge between AI agents and MCP servers. Install it globally: |
| ``` | ||
|
|
||
| ## Configure AI coding assistants | ||
|
|
There was a problem hiding this comment.
This whole section down is wrong and contains unnecessarily duplicate information. I don't have time to fix it entirely myself.
Please read the https://github.com/apify/agent-skills repo again. You actually DON'T need to install the Apify MCP server itself, the connection is handled through mcpc utility. What you DO NEED however is to store the Apify API token in the .env file and this piece is missing here
Original Slack message
https://apify.slack.com/archives/C09AUCEABDM/p1773248098156329
Summary
/integrations/agent-skillscovering Apify Agent Skills and MCPC (universal MCP CLI client)Page structure
Context
Notes
/integrations/agent-skills- send this slug to the blog post author for cross-linking🤖 Generated with Claude Code