Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
### Added
- `apify` agent (single user-facing entry point for all Apify requests).
- `apify-routing` instruction (soft enforcement of the agent-first pattern).
- `apify` MCP server entry in `.vscode/mcp.json` pointing to `https://mcp.apify.com/`.
- `apify` MCP server entry in `apify/.mcp.json` pointing to `https://mcp.apify.com/`.
- Skills: `apify-actor-development`, `apify-actorization`, `apify-generate-output-schema`, `apify-sdk-integration`, `apify-ultimate-scraper`.
- Bundled Node helper scripts for the ultimate-scraper skill (`search_actors.js`, `fetch_actor_details.js`, `run_actor.js`).
- Apache-2.0 license.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Official Apify plugin for GitHub Copilot — adds an `apify` agent, an Apify MCP
| Component | Name | Purpose |
|---|---|---|
| Agent (entry point) | `apify` | Routes each Apify request to the right MCP tool, CLI-based flow, or internal skill. **This is the one you should invoke.** |
| MCP server | `apify` (`https://mcp.apify.com/`) | Configured in `.vscode/mcp.json`; lets the agent search the Apify Store, fetch Actor details, run Actors, retrieve dataset items, and look up Apify docs when MCP is available. |
| MCP server | `apify` (`https://mcp.apify.com/`) | Configured in `apify/.mcp.json`; lets the agent search the Apify Store, fetch Actor details, run Actors, retrieve dataset items, and look up Apify docs when MCP is available. |
| Skill | `apify-actor-development` | Create, debug, test, and deploy a new Apify Actor from scratch. |
| Skill | `apify-actorization` | Convert an existing JavaScript, TypeScript, Python, or CLI-based project into an Apify Actor. |
| Skill | `apify-generate-output-schema` | Analyze an Actor and generate or update `dataset_schema.json`, `output_schema.json`, and `key_value_store_schema.json`. |
Expand All @@ -22,7 +22,7 @@ Clone (or copy) the plugin contents into your project repository so that the Cop

```bash
# Clone the plugin repo
git clone https://github.com/apify/apify-copilot-plugin /tmp/apify-copilot
git clone https://github.com/apify/apify-github-copilot-plugin /tmp/apify-copilot


```
Expand Down Expand Up @@ -77,7 +77,7 @@ Open Copilot Chat in VS Code and invoke the `apify` agent. The routing instructi

### MCP server

The `apify` MCP server is configured in `.vscode/mcp.json` and is the preferred Route 1 transport when it is available. The shipped agent expects the server to expose:
The `apify` MCP server is configured in `apify/.mcp.json` and is the preferred Route 1 transport when it is available. The shipped agent expects the server to expose:

- `search-actors` — search the Apify Store by keyword
- `fetch-actor-details` — Actor specs, input schema, and pricing
Expand Down
Loading