Improve dataset card: add metadata, paper link, and usage snippet
#3
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,24 +1,30 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
<h1 align="center">MCP-Atlas: A Large-Scale Benchmark for Tool-Use Competency with Real MCP Servers</h1>
|
| 6 |
|
| 7 |
<p align="center">
|
| 8 |
-
<a href="https://scale.com/leaderboard/mcp_atlas">Leaderboard</a> | <a href="https://
|
| 9 |
-
|
| 10 |
|
| 11 |
---
|
| 12 |
|
| 13 |
## Dataset Summary
|
| 14 |
|
| 15 |
-
This public release is a subset of 500 sample tasks from the MCP Atlas Benchmark dataset.
|
| 16 |
-
|
| 17 |
-
Tasks are designed to assess tool-use competency in realistic, multi-step workflows.
|
| 18 |
-
Tasks use natural language prompts that avoid naming specific tools or servers, requiring agents to identify and orchestrate 3-6 tool calls across multiple servers.
|
| 19 |
|
| 20 |
-
This dataset closely follows the distributions of the full benchmark, utilizing all 36 servers and 220 tools.
|
| 21 |
-
The public release maintains 3-6 tool calls per task as well. The data is contained in a single parquet file.
|
| 22 |
|
| 23 |
---
|
| 24 |
|
|
@@ -33,12 +39,18 @@ An example of a MCP Atlas datum is as follows:
|
|
| 33 |
- TRAJECTORY: (str) The sequence of tool calls (names, methods, dependencies, arguments, outputs) resolving the task.
|
| 34 |
```
|
| 35 |
|
| 36 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
-
|
| 39 |
-
PROMPT and ENABLED_TOOLS are exposed to the model endpoint of your choice (API keys not provided).
|
| 40 |
-
Model responses are evaluated via the claims-based rubric GTFA_CLAIMS to determine a coverage score.
|
| 41 |
-
TRAJECTORY data can be used for post-eval diagnostics. (Note: diagnostics results and processes are not included in the public release)
|
| 42 |
|
| 43 |
---
|
| 44 |
|
|
@@ -46,4 +58,4 @@ TRAJECTORY data can be used for post-eval diagnostics. (Note: diagnostics result
|
|
| 46 |
|
| 47 |
This dataset is released under the CC-BY-4.0.
|
| 48 |
|
| 49 |
-
[](https://creativecommons.org/licenses/by/4.0/)
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- tool-use
|
| 9 |
+
- mcp
|
| 10 |
+
- benchmark
|
| 11 |
---
|
| 12 |
|
| 13 |
<h1 align="center">MCP-Atlas: A Large-Scale Benchmark for Tool-Use Competency with Real MCP Servers</h1>
|
| 14 |
|
| 15 |
<p align="center">
|
| 16 |
+
<a href="https://scale.com/leaderboard/mcp_atlas">Leaderboard</a> | <a href="https://huggingface.co/papers/2602.00933">Paper</a> | <a href="https://github.com/scaleapi/mcp-atlas">Github</a>
|
| 17 |
+
</p>
|
| 18 |
|
| 19 |
---
|
| 20 |
|
| 21 |
## Dataset Summary
|
| 22 |
|
| 23 |
+
This public release is a subset of 500 sample tasks from the MCP Atlas Benchmark dataset, as presented in the paper [MCP-Atlas: A Large-Scale Benchmark for Tool-Use Competency with Real MCP Servers](https://huggingface.co/papers/2602.00933).
|
| 24 |
+
|
| 25 |
+
MCP Atlas is a large-scale benchmark for evaluating tool-use competency, comprising 36 real MCP (Model Context Protocol) servers and 220 tools. Tasks are designed to assess tool-use competency in realistic, multi-step workflows. Tasks use natural language prompts that avoid naming specific tools or servers, requiring agents to identify and orchestrate 3-6 tool calls across multiple servers.
|
|
|
|
| 26 |
|
| 27 |
+
This dataset closely follows the distributions of the full benchmark, utilizing all 36 servers and 220 tools. The public release maintains 3-6 tool calls per task as well. The data is contained in a single parquet file.
|
|
|
|
| 28 |
|
| 29 |
---
|
| 30 |
|
|
|
|
| 39 |
- TRAJECTORY: (str) The sequence of tool calls (names, methods, dependencies, arguments, outputs) resolving the task.
|
| 40 |
```
|
| 41 |
|
| 42 |
+
## Usage
|
| 43 |
+
|
| 44 |
+
You can use the official [evaluation harness](https://github.com/scaleapi/mcp-atlas) to run completions on this dataset:
|
| 45 |
+
|
| 46 |
+
```bash
|
| 47 |
+
uv run python mcp_completion_script.py \
|
| 48 |
+
--model "openai/gpt-4o" \
|
| 49 |
+
--input_huggingface "ScaleAI/MCP-Atlas" \
|
| 50 |
+
--output "mcp_eval_results.csv"
|
| 51 |
+
```
|
| 52 |
|
| 53 |
+
Model responses are evaluated via the claims-based rubric `GTFA_CLAIMS` to determine a coverage score. `PROMPT` and `ENABLED_TOOLS` are intended to be exposed to the model endpoint.
|
|
|
|
|
|
|
|
|
|
| 54 |
|
| 55 |
---
|
| 56 |
|
|
|
|
| 58 |
|
| 59 |
This dataset is released under the CC-BY-4.0.
|
| 60 |
|
| 61 |
+
[](https://creativecommons.org/licenses/by/4.0/)
|