From 16ef5cdb00e5840e75cd7555a4ca9563570c137b Mon Sep 17 00:00:00 2001 From: MQ Date: Tue, 29 Jul 2025 15:09:11 +0200 Subject: [PATCH 1/3] add a brief tools overview table --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index ec9e293b..437fb784 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,30 @@ Here are some special MCP operations and how the Apify MCP Server supports them: For example, to enable all tools, use `npx @apify/actors-mcp-server --tools docs,runs,storage,preview` or `https://mcp.apify.com/?tools=docs,runs,storage,preview`. +### Overview of available tools + +Here is a brief list of all the tools provided by the Apify MCP Server. For more details, visit the [Apify MCP Server tools page](https://mcp.apify.com/tools). + +| Tool name | Category | Description | Enabled by default | +| :--- | :--- | :--- | :---: | +| `get-actor-details` | default | Retrieve detailed information about a specific Actor. | ✅ | +| `search-actors` | default | Search for Actors in the Apify Store. | ✅ | +| `add-actor` | default | Add an Actor as a new tool for the user to call. | ✅ | +| [`apify-slash-rag-web-browser`](https://apify.com/apify/rag-web-browser) | default | An Actor tool to browse the web. | ✅ | +| `search-apify-docs` | docs | Search the Apify documentation for relevant pages. | ✅ | +| `fetch-apify-docs` | docs | Fetch the full content of an Apify documentation page by its URL. | ✅ | +| `call-actor` | preview | Call an Actor and get its run results. | ❌ | +| `get-actor-run` | runs | Get detailed information about a specific Actor run. | ❌ | +| `get-actor-run-list` | runs | Get a list of an Actor's runs, filterable by status. | ❌ | +| `get-actor-log` | runs | Retrieve the logs for a specific Actor run. | ❌ | +| `get-dataset` | storage | Get metadata about a specific dataset. | ❌ | +| `get-dataset-items` | storage | Retrieve items from a dataset with support for filtering and pagination. | ❌ | +| `get-key-value-store` | storage | Get metadata about a specific key-value store. | ❌ | +| `get-key-value-store-keys`| storage | List the keys within a specific key-value store. | ❌ | +| `get-key-value-store-record`| storage | Get the value associated with a specific key in a key-value store. | ❌ | +| `get-dataset-list` | storage | List all available datasets for the user. | ❌ | +| `get-key-value-store-list`| storage | List all available key-value stores for the user. | ❌ | + ### Prompts The server provides a set of predefined example prompts to help you get started interacting with Apify through MCP. For example, there is a `GetLatestNewsOnTopic` prompt that allows you to easily retrieve the latest news on a specific topic using the [RAG Web Browser](https://apify.com/apify/rag-web-browser) Actor. From 89f12c274a55660f5260b37e99787fc038ec6787 Mon Sep 17 00:00:00 2001 From: MQ Date: Tue, 29 Jul 2025 15:17:27 +0200 Subject: [PATCH 2/3] remove red cross emoji --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 437fb784..21a03f0e 100644 --- a/README.md +++ b/README.md @@ -164,17 +164,17 @@ Here is a brief list of all the tools provided by the Apify MCP Server. For more | [`apify-slash-rag-web-browser`](https://apify.com/apify/rag-web-browser) | default | An Actor tool to browse the web. | ✅ | | `search-apify-docs` | docs | Search the Apify documentation for relevant pages. | ✅ | | `fetch-apify-docs` | docs | Fetch the full content of an Apify documentation page by its URL. | ✅ | -| `call-actor` | preview | Call an Actor and get its run results. | ❌ | -| `get-actor-run` | runs | Get detailed information about a specific Actor run. | ❌ | -| `get-actor-run-list` | runs | Get a list of an Actor's runs, filterable by status. | ❌ | -| `get-actor-log` | runs | Retrieve the logs for a specific Actor run. | ❌ | -| `get-dataset` | storage | Get metadata about a specific dataset. | ❌ | -| `get-dataset-items` | storage | Retrieve items from a dataset with support for filtering and pagination. | ❌ | -| `get-key-value-store` | storage | Get metadata about a specific key-value store. | ❌ | -| `get-key-value-store-keys`| storage | List the keys within a specific key-value store. | ❌ | -| `get-key-value-store-record`| storage | Get the value associated with a specific key in a key-value store. | ❌ | -| `get-dataset-list` | storage | List all available datasets for the user. | ❌ | -| `get-key-value-store-list`| storage | List all available key-value stores for the user. | ❌ | +| `call-actor` | preview | Call an Actor and get its run results. | | +| `get-actor-run` | runs | Get detailed information about a specific Actor run. | | +| `get-actor-run-list` | runs | Get a list of an Actor's runs, filterable by status. | | +| `get-actor-log` | runs | Retrieve the logs for a specific Actor run. | | +| `get-dataset` | storage | Get metadata about a specific dataset. | | +| `get-dataset-items` | storage | Retrieve items from a dataset with support for filtering and pagination. | | +| `get-key-value-store` | storage | Get metadata about a specific key-value store. | | +| `get-key-value-store-keys`| storage | List the keys within a specific key-value store. | | +| `get-key-value-store-record`| storage | Get the value associated with a specific key in a key-value store. | | +| `get-dataset-list` | storage | List all available datasets for the user. | | +| `get-key-value-store-list`| storage | List all available key-value stores for the user. | | ### Prompts From 298293f696898a0d07e0edaeb995f8b2a51ad1a7 Mon Sep 17 00:00:00 2001 From: MQ Date: Thu, 31 Jul 2025 15:24:20 +0200 Subject: [PATCH 3/3] remove the /tools link as it will be remove from the mcp.apify.com --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21a03f0e..2ded24e5 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ For example, to enable all tools, use `npx @apify/actors-mcp-server --tools docs ### Overview of available tools -Here is a brief list of all the tools provided by the Apify MCP Server. For more details, visit the [Apify MCP Server tools page](https://mcp.apify.com/tools). +Here is an overview list of all the tools provided by the Apify MCP Server. | Tool name | Category | Description | Enabled by default | | :--- | :--- | :--- | :---: |