M
Mcpdaddy
作者 @un
MCP server by un
创建于 2/1/2026
更新于 24 days ago
README
Repository documentation and setup instructions
MCP Daddy Monorepo
This repository is organized as a small monorepo.
Important:
- The git repo root is
code/. plans/is planning material and is not intended to be committed.
Layout
apps/apps/web/: Marketing/landing website.apps/mcp-daddy-app/: Desktop app (Tauri + React).
crates/: Rust library crates shared across the project.bin/: Rust binaries/CLIs (e.g. the stdio bridge).
Working Conventions
- Only code changes under
code/are intended to be committed/pushed. - Plans and discussions live under
plans/at the workspace root.
Commands
Run these from the monorepo root (code/):
pnpm dev: start the landing page dev serverpnpm lint: lint the landing pagepnpm typecheck: run TypeScript typecheckingpnpm build: build the landing pagepnpm format: format files undercode/
Profile Selection (Stdio)
For stdio-based sessions (e.g. the bridge and local testing), MCP Daddy selects a Client Profile by ID.
- CLI flag:
--profile <profileId> - Env var:
MCP_DADDY_PROFILE=<profileId> - If neither is set, MCP Daddy defaults to
default.
快速设置
此服务器的安装指南
安装命令 (包未发布)
git clone https://github.com/un/mcpdaddy
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。
Cursor 配置 (mcp.json)
{
"mcpServers": {
"un-mcpdaddy": {
"command": "git",
"args": [
"clone",
"https://github.com/un/mcpdaddy"
]
}
}
}