MCP Server
Active
Apache-2.0
io.github.ynishi/mini-app-mcp MCP Server
io.github.ynishi/mini-app-mcp
What is the io.github.ynishi/mini-app-mcp MCP server?
Agent-First CRUD store MCP server — 1 daemon per table, schema.yaml driven, SQLite backend
How to install io.github.ynishi/mini-app-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mini-app-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mini-app-mcp:0.17.0"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mini-app-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mini-app-mcp:0.17.0"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mini-app-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mini-app-mcp:0.17.0"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mini-app-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mini-app-mcp:0.17.0"
]
}
}
}Claude Code
claude mcp add mini-app-mcp -- docker run -i --rm ghcr.io/ynishi/mini-app-mcp:0.17.0Related MCP servers
MCP server for mlua-swarm: engine that compiles flow.ir Blueprints and dispatches agent steps.
1
View repository →Rust
Apache-2.0