Explorer-first MCP client that renders any MCP server's tools as interactive UI — no LLM required, no tool-calling loop. Point it at any MCP server over stdio or SSE and get cards, tables, charts, forms, pipelines, and dashboards auto-generated from your tool outputs. Install with `npx burnish -- <your-mcp-server>`.
Server Config
{
"mcpServers": {
"burnish-example": {
"command": "npx",
"args": [
"-y",
"@burnishdev/example-server"
]
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/tmp"
]
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}