Datasets:
File size: 8,174 Bytes
0f34ee8 e790df2 0f34ee8 e790df2 0f34ee8 b7932c7 0f34ee8 cbecc3d 0f34ee8 e790df2 0f34ee8 e790df2 cbecc3d 0f34ee8 e790df2 0f34ee8 b7932c7 0f34ee8 e790df2 0f34ee8 e790df2 0f34ee8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | ---
license: cc-by-4.0
language:
- en
tags:
- mcp
- model-context-protocol
- ai-agents
- ai-safety
- tool-classification
- security
- policy
size_categories:
- 10K<n<100K
pretty_name: PolicyLayer MCP Server Catalogue
configs:
- config_name: default
data_files:
- split: servers
path: servers.jsonl
- split: tools
path: tools.jsonl
---
# PolicyLayer MCP Server Catalogue
A risk-classified catalogue of every Model Context Protocol (MCP) server reachable through the public registries. Each tool exposed by each server is classified into one of six risk categories using a verb-based classifier with input-schema heuristics.
**2,031 servers · 31,000 tools · classified June 2026 · refreshed monthly.**
The catalogue is the underlying dataset for PolicyLayer's research report,
[*The State of MCP Security — June 2026*](https://policylayer.com/research/state-of-mcp).
---
## Loading the dataset
```python
from datasets import load_dataset
ds = load_dataset("PolicyLayer/mcp-server-catalogue")
servers = ds["servers"]
tools = ds["tools"]
print(f"{len(servers)} servers, {len(tools)} tools")
# Find every destructive tool exposed by an identity-provider MCP server
ip_slugs = [s["slug"] for s in servers if "identity" in (s["description"] or "").lower()]
destructive = tools.filter(
lambda t: t["category"] == "Destructive" and t["server_slug"] in ip_slugs
)
```
---
## Schema
### `servers` split
One row per Model Context Protocol server with at least one classified tool.
| Field | Type | Description |
|---|---|---|
| `slug` | string | Stable identifier. Use this to join with `tools.server_slug`. |
| `name` | string | Human-readable server name as published by its author. |
| `packages` | array of strings | npm or other package identifiers exposing this server. |
| `repo_url` | string \| null | Source repository URL where available. |
| `description` | string \| null | Server-author-supplied description. |
| `tool_count` | int | Number of tools the server exposes. |
| `categories` | array of strings | Distinct risk categories present in this server's tools. Subset of {`Read`, `Write`, `Execute`, `Destructive`, `Financial`, `Other`}. |
| `source` | string | Discovery channel: `crawler` (npm auto-discovery), `smithery` (Smithery registry), `seed` (manually-added official), `user_scan` (community contribution). |
| `confidence` | string | Classifier confidence for this server's labels: `high`, `verified`, `medium`, `low`. |
| `last_scanned_at` | string (ISO 8601) | Most recent scan timestamp. |
| `npm_weekly_downloads` | int \| null | Weekly downloads of the server's npm package as of the snapshot date. Null if the server is not on npm or the registry didn't return data. |
| `npm_latest_version` | string \| null | Latest published version on npm. |
| `npm_last_published` | string (ISO 8601) \| null | Timestamp of the latest npm publish. |
| `github_stars` | int \| null | GitHub stargazer count for the source repository. |
| `github_forks` | int \| null | GitHub fork count. |
| `github_open_issues` | int \| null | Currently-open GitHub issues + pull requests. |
| `github_last_commit` | string (ISO 8601) \| null | `pushed_at` timestamp on the GitHub repository — proxy for liveness. |
| `github_license` | string \| null | SPDX licence identifier reported by GitHub (e.g., `MIT`, `Apache-2.0`). |
| `github_archived` | bool \| null | Whether the GitHub repository is archived (read-only). |
### `tools` split
One row per tool exposed by a server in the `servers` split.
| Field | Type | Description |
|---|---|---|
| `server_slug` | string | Foreign key to `servers.slug`. |
| `name` | string | Tool name as exposed via `tools/list`. |
| `description` | string \| null | Tool-author-supplied description. |
| `category` | string | Risk category. One of `Read`, `Write`, `Execute`, `Destructive`, `Financial`, `Other`. |
| `severity` | string | Discrete severity bucket: `Low`, `Medium`, `High`, `Critical`. |
| `confidence` | string | Classifier confidence: `high`, `verified`, `medium`, `low`. |
| `risk_weight` | float | Risk weight in [0.0, 1.0]. 0.0 = read-only, 1.0 = destructive financial. |
| `risk_type` | string \| null | Specific risk type where determinable (e.g., `delete`, `drop`, `payment`). |
| `input_schema` | string \| null | JSON-encoded tool input schema. May be `null` if the source provided no schema. |
---
## Risk categories
| Category | Definition | Risk weight typical range |
|---|---|---|
| `Read` | Retrieves data without modification. | 0.05–0.15 |
| `Write` | Creates or modifies data and resources. | 0.20–0.45 |
| `Execute` | Runs code, scripts, or container commands. | 0.40–0.70 |
| `Destructive` | Permanently deletes or revokes resources. | 0.55–0.85 |
| `Financial` | Moves real money: charges, payments, refunds, transfers. | 0.65–1.00 |
| `Other` | Does not fit the above categories. | varies |
Classification is verb-based with input-schema heuristics. Methodology details and known failure modes are documented in the
[research report](https://policylayer.com/research/state-of-mcp#methodology).
---
## Coverage and limitations
- **Public registries only.** The dataset covers servers reachable through the official Model Context Protocol registry, npm, Smithery, and Glama. Private and self-hosted servers are not represented.
- **Lower bound.** Some registry-listed servers are unreachable through the scan pipeline (broken installs, dependency failures, or auth-walled launchers) and are excluded. The dataset is therefore a lower bound on the real ecosystem.
- **Static snapshot.** This release is the June 2026 edition. New monthly versions are released on the 1st of each month.
- **Classifier confidence varies.** 74.5% of tool classifications are high-confidence and 12.5% are verified. The remaining 12.9% are medium or low confidence and should be treated as advisory rather than authoritative for downstream risk decisions.
- **Usage metrics are point-in-time.** `npm_weekly_downloads` reflects the week immediately before the snapshot. `github_*` fields reflect the GitHub repository state at fetch time. Metrics are null where the server is not on npm, has no GitHub repo, or the upstream API rate-limited the fetch.
---
## Citation
If you use this dataset in research or commentary, please cite the research report:
```
PolicyLayer. (2026). The State of MCP Security — June 2026.
https://policylayer.com/research/state-of-mcp
```
For the dataset itself:
```
PolicyLayer. (2026). PolicyLayer MCP Server Catalogue [Data set].
Hugging Face. https://huggingface.co/datasets/PolicyLayer/mcp-server-catalogue
```
---
## Updates
The catalogue is regenerated monthly from PolicyLayer's continuously-updated scan pipeline. Each monthly release is tagged on Hugging Face. Subscribe to the dataset to be notified of new versions.
| Edition | Tag | Servers | Tools |
|---|---|---:|---:|
| June 2026 | `2026-06` | 2,031 | 31,000 |
| May 2026 | `2026-05` | 1,787 | 25,329 |
---
## Related
- **Research report:** [The State of MCP Security — June 2026](https://policylayer.com/research/state-of-mcp)
- **Public tool catalogue:** [policylayer.com/tools](https://policylayer.com/tools) — browse classifications by server.
- **MCP attack database:** [policylayer.com/attacks](https://policylayer.com/attacks) — documented MCP incidents and attack patterns.
- **PolicyLayer:** [policylayer.com](https://policylayer.com) — the MCP control plane (gateway, policy engine, audit log) for production agent fleets.
Questions, methodology details, or data requests: research@policylayer.com.
---
## Licence
This dataset is released under [Creative Commons Attribution 4.0 International (CC-BY-4.0)](https://creativecommons.org/licenses/by/4.0/).
You are free to use, share, adapt, and redistribute the data, including for commercial purposes, with attribution to PolicyLayer. The classifier output is the work product of PolicyLayer's research team; tool descriptions and server metadata are the work of their respective authors and remain under whatever licence the source projects supply.
|