File size: 1,612 Bytes
8d56ea5 | 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 | ---
license: mit
language:
- en
tags:
- mcp
- model-context-protocol
- claude-desktop
- cursor
- cline
- windsurf
- zed
- configuration
- linting
size_categories:
- n<1K
pretty_name: MCP Config Examples
configs:
- config_name: default
data_files:
- split: train
path: data.jsonl
---
# MCP Config Examples
Sample MCP (Model Context Protocol) configurations across Claude Desktop, Cursor, Cline, Windsurf, and Zed — both VALID examples to copy-paste and INVALID ones for fixture-driven testing of MCP linters.
```python
from datasets import load_dataset
ds = load_dataset("mukunda1729/mcp-config-examples", split="train")
print([r["scenario"] for r in ds if not r["valid"]])
```
## Schema
| Field | Type | Notes |
|---|---|---|
| `client` | `str` | `claude-desktop`, `cursor`, `cline`, `windsurf`, `zed` |
| `scenario` | `str` | Short label describing this fixture |
| `config` | `object` | The actual MCP config JSON |
| `valid` | `bool` | Whether the config is well-formed and safe |
| `issues` | `array<str>` | Lint findings when `valid: false` |
## Use cases
- Fixture-driven tests for MCP config linters: [`mcpcheck-py`](https://pypi.org/project/mcpcheck-py/), [`mcp-config-check`](https://pypi.org/project/mcp-config-check/), [`@mukundakatta/mcpcheck`](https://www.npmjs.com/package/@mukundakatta/mcpcheck).
- Copy-paste templates when configuring an MCP client for the first time.
- Negative-test corpus for tools that need to detect dangerous configs.
Part of [The Agent Reliability Stack](https://mukundakatta.github.io/agent-stack/).
## License
MIT.
|