https://github.com/atirutw/yaml-mcp
Allow LLMs to browse and view YAML files without blowing context window
https://github.com/atirutw/yaml-mcp
llm mcp yaml
Last synced: 13 days ago
JSON representation
Allow LLMs to browse and view YAML files without blowing context window
- Host: GitHub
- URL: https://github.com/atirutw/yaml-mcp
- Owner: atirutw
- Created: 2025-11-04T06:23:13.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-04T06:23:29.000Z (8 months ago)
- Last Synced: 2026-03-02T19:28:44.575Z (4 months ago)
- Topics: llm, mcp, yaml
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YAML Viewer MCP Server
This MCP server provides a way for LLMs to browse and view YAML files without overwhelming the context window.
## Example configuration
```json
// .vscode/mcp.json
{
"servers": {
"yaml-mcp": {
"type": "stdio",
"command": "python",
"args": [
"/path/to/server.py"
]
}
}
}
```