An open API service indexing awesome lists of open source software.

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

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"
]
}
}
}
```