Miyabi MCP Bundle
A comprehensive all-in-one MCP server with 172 tools across 21 categories including Git operations, tmux monitoring, log aggregation, system resource monitoring, and GitHub integration. Features enterprise-grade security, intelligent caching, cross-platform support, and zero-configuration setup for Claude Desktop.
README
<div align="center">
๐ธ Miyabi MCP Bundle
๐ The Most Comprehensive MCP Server for Claude Desktop & AI Agents
<br />
๐ฏ 172 MCP Tools ยท 38 Agents ยท 22 Skills ยท 56 Commands ยท 24 Hooks
<br />
โญ If this helps you, please give it a star! It helps others discover this project.
<br />
Installation ยท Quick Start ยท Tool Reference ยท API Docs ยท Plugins ยท Security ยท ๆฅๆฌ่ช
<br />
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โ โโโโ โโโโโโโโโโ โโโ โโโโโโ โโโโโโโ โโโ โ
โ โโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโ โโโโโโโ โโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโ โโโโโ โโโโโโโโโโโโโโโโโโโ โ
โ โโโ โโโ โโโโโโ โโโ โโโ โโโโโโโโโโโโโโ โ
โ โโโ โโโโโโ โโโ โโโ โโโโโโโโโโ โโโ โ
โ โ
โ The All-in-One MCP Server for Claude Desktop v3.7.0 โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
</div>
โจ Why Miyabi?
Miyabi (้ ) - Japanese for "elegance" and "refinement"
Transform your Claude Desktop into a powerful development command center with the most comprehensive MCP server available:
<table> <tr> <td width="50%">
๐ฏ 172 Tools in One Package
The largest collection of MCP tools: 172 Tools + 38 Agents + 22 Skills + 56 Commands + 24 Hooks.
โก Zero Configuration
Works instantly out of the box. Just add to Claude Desktop and go.
๐ Enterprise-Grade Security
Input sanitization, path traversal protection, and secure defaults.
</td> <td width="50%">
๐ Intelligent Caching
Built-in caching system for faster responses and reduced API calls.
๐ Cross-Platform
Seamlessly works on macOS, Linux, and Windows.
๐ฅ Health Check System
Comprehensive system health validation and diagnostics.
</td> </tr> </table>
๐ Comparison with Other MCP Servers
| Feature | Miyabi | Other MCP Servers |
|---|---|---|
| Total Tools | 172 | 10-30 |
| Security Sanitization | โ | โ |
| Built-in Caching | โ | โ |
| Health Check | โ | โ |
| Cross-Platform | โ | Limited |
| Plugin System | โ | โ |
| Zero Config | โ | โ |
๐ฆ Installation
Quick Start (Recommended)
# Interactive setup wizard (generates Claude Desktop config automatically)
npx miyabi-mcp-bundle init
Global Installation
npm install -g miyabi-mcp-bundle
# Run the setup wizard
miyabi-mcp init
# Or diagnose your setup
miyabi-mcp doctor
CLI Commands
| Command | Description |
|---|---|
miyabi-mcp init |
๐ Interactive setup wizard |
miyabi-mcp doctor |
๐ Diagnose setup issues |
miyabi-mcp info |
โน๏ธ Show system information |
miyabi-mcp --help |
๐ Show help |
miyabi-mcp |
โถ๏ธ Start MCP server |
โ๏ธ Claude Desktop Setup
Option 1: Automatic Setup (Recommended)
npx miyabi-mcp-bundle init
The setup wizard will:
- Check prerequisites (Node.js, npm, git)
- Ask for your repository path
- Optionally configure GitHub token
- Generate Claude Desktop configuration automatically
Option 2: Manual Setup
Add to your Claude Desktop configuration:
<details> <summary><b>๐ Config File Locations</b></summary>
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/claude/claude_desktop_config.json |
</details>
{
"mcpServers": {
"miyabi": {
"command": "npx",
"args": ["-y", "miyabi-mcp-bundle"],
"env": {
"MIYABI_REPO_PATH": "/path/to/your/repo",
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}
<details> <summary><b>๐ง Environment Variables</b></summary>
| Variable | Required | Default | Description |
|---|---|---|---|
MIYABI_REPO_PATH |
- | cwd() |
Git repository path |
MIYABI_LOG_DIR |
- | Same as repo | Log files directory |
MIYABI_WATCH_DIR |
- | Same as repo | File watch directory |
GITHUB_TOKEN |
For GitHub | - | GitHub Personal Access Token |
GITHUB_DEFAULT_OWNER |
- | - | Default repository owner |
GITHUB_DEFAULT_REPO |
- | - | Default repository name |
</details>
๐ Quick Start
After configuration, try these commands in Claude Desktop:
๐ "Show me the system resources"
๐ "What's my git status?"
๐ "List recently changed files"
๐ "Search logs for errors"
๐ "Show open GitHub issues"
๐ ๏ธ Complete Tool Reference
<div align="center">
172 Tools Across 21 Categories + Health Check
</div>
<details open> <summary><h3>๐ Git Inspector <code>19 tools</code></h3></summary>
| Tool | Description |
|---|---|
git_status |
Get current git status (modified, staged, untracked) |
git_branch_list |
List all branches with remote tracking info |
git_current_branch |
Get current branch name |
git_log |
Get commit history |
git_worktree_list |
List all git worktrees |
git_diff |
Get diff of unstaged changes |
git_staged_diff |
Get diff of staged changes |
git_remote_list |
List all remotes |
git_branch_ahead_behind |
Check commits ahead/behind origin |
git_file_history |
Get commit history for a specific file |
git_stash_list |
List all git stashes |
git_blame |
Get blame info for files with line range |
git_show |
Show commit details and diffs |
git_tag_list |
List all tags with metadata |
git_contributors |
Get repository contributors with stats |
git_conflicts |
NEW Detect merge conflicts in worktree |
git_submodule_status |
NEW List submodule status |
git_lfs_status |
NEW Git LFS status (requires git-lfs) |
git_hooks_list |
NEW List git hooks in repository |
</details>
<details> <summary><h3>๐บ Tmux Monitor <code>10 tools</code></h3></summary>
| Tool | Description |
|---|---|
tmux_list_sessions |
List all tmux sessions |
tmux_list_windows |
List windows in a session |
tmux_list_panes |
List panes in a window |
tmux_send_keys |
Send keys to a pane |
tmux_pane_capture |
Capture pane content |
tmux_pane_search |
Search pane content |
tmux_pane_tail |
Get last N lines from pane |
tmux_pane_is_busy |
Check if pane is busy |
tmux_pane_current_command |
Get current command in pane |
tmux_session_info |
NEW Get detailed session information |
</details>
<details> <summary><h3>๐ Log Aggregator <code>7 tools</code></h3></summary>
| Tool | Description |
|---|---|
log_sources |
List all log sources |
log_get_recent |
Get recent log entries |
log_search |
Search logs for a pattern |
log_get_errors |
Get error-level logs |
log_get_warnings |
Get warning-level logs |
log_tail |
Tail a specific log file |
log_stats |
NEW Log file statistics and analysis |
</details>
<details> <summary><h3>๐ป Resource Monitor <code>10 tools</code></h3></summary>
| Tool | Description |
|---|---|
resource_cpu |
Get CPU usage |
resource_memory |
Get memory usage |
resource_disk |
Get disk usage |
resource_load |
Get system load average |
resource_overview |
Get comprehensive resource overview |
resource_processes |
Get process list sorted by resource |
resource_uptime |
Get system uptime |
resource_network_stats |
Get network statistics |
resource_battery |
NEW Battery status and health |
resource_temperature |
NEW CPU/GPU temperature monitoring |
</details>
<details> <summary><h3>๐ Network Inspector <code>15 tools</code></h3></summary>
| Tool | Description |
|---|---|
network_interfaces |
List network interfaces |
network_connections |
List active connections |
network_listening_ports |
List listening ports |
network_stats |
Get network statistics |
network_gateway |
Get default gateway |
network_ping |
Ping a host (with validation) |
network_bandwidth |
Get bandwidth usage |
network_overview |
Get network overview |
network_dns_lookup |
DNS lookup with IPv4/IPv6 |
network_port_check |
Check if port is open on host |
network_public_ip |
Get public IP address |
network_wifi_info |
WiFi connection details |
network_route_table |
NEW Show routing table |
network_ssl_check |
NEW Check SSL certificate for a host |
network_traceroute |
NEW Traceroute to a host |
</details>
<details> <summary><h3>โ๏ธ Process Inspector <code>14 tools</code></h3></summary>
| Tool | Description |
|---|---|
process_info |
Get process details by PID |
process_list |
List all processes |
process_search |
Search processes by name |
process_tree |
Get process tree |
process_file_descriptors |
Get file descriptors for process |
process_environment |
Get environment variables for process |
process_children |
Get child processes |
process_top |
Get top processes by CPU/memory |
process_kill |
Kill process with safety confirmation |
process_ports |
Processes with network ports |
process_cpu_history |
CPU usage history |
process_memory_detail |
Detailed memory breakdown |
process_threads |
NEW List threads for a process |
process_io_stats |
NEW I/O statistics for a process (Linux) |
</details>
<details> <summary><h3>๐ File Watcher <code>10 tools</code></h3></summary>
| Tool | Description |
|---|---|
file_stats |
Get file/directory stats |
file_recent_changes |
Get recently changed files |
file_search |
Search files by glob pattern |
file_tree |
Get directory tree |
file_compare |
Compare two files |
file_changes_since |
Get files changed since timestamp |
file_read |
Safe file reading with size limits |
file_checksum |
NEW MD5/SHA256 file checksums |
file_size_summary |
NEW Directory size analysis |
file_duplicates |
NEW Find duplicate files |
</details>
<details> <summary><h3>๐ค Claude Monitor <code>8 tools</code></h3></summary>
| Tool | Description |
|---|---|
claude_config |
Get Claude Desktop configuration |
claude_mcp_status |
Get MCP server status |
claude_session_info |
Get Claude session info |
claude_logs |
Get Claude logs |
claude_log_search |
Search Claude logs |
claude_log_files |
List Claude log files |
claude_background_shells |
Get background shell info |
claude_status |
Get comprehensive Claude status |
</details>
<details> <summary><h3>๐ GitHub Integration <code>21 tools</code></h3></summary>
| Tool | Description |
|---|---|
github_list_issues |
List GitHub issues |
github_get_issue |
Get issue details |
github_create_issue |
Create new issue |
github_update_issue |
Update issue |
github_add_comment |
Add comment to issue/PR |
github_list_prs |
List pull requests |
github_get_pr |
Get PR details |
github_create_pr |
Create pull request |
github_merge_pr |
Merge pull request |
github_list_labels |
List repository labels |
github_add_labels |
Add labels to issue/PR |
github_list_milestones |
List milestones |
github_list_workflows |
List GitHub Actions workflows |
github_list_workflow_runs |
List recent workflow runs |
github_repo_info |
Repository metadata and stats |
github_list_releases |
Release history |
github_list_branches |
Branch listing with protection |
github_compare_commits |
Compare commits/branches |
github_list_pr_reviews |
NEW List reviews for a pull request |
github_create_review |
NEW Create a review for a pull request |
github_submit_review |
NEW Submit a pending review |
</details>
<details> <summary><h3>๐ฅ Health Check <code>1 tool</code></h3></summary>
| Tool | Description |
|---|---|
health_check |
Comprehensive system health validation |
Validates: Git connectivity, GitHub API status, system resources, and overall health.
</details>
<details> <summary><h3>๐ง Linux systemd <code>3 tools</code></h3></summary>
| Tool | Description |
|---|---|
linux_systemd_units |
NEW List systemd units (Linux only) |
linux_systemd_status |
NEW Get status of a systemd unit |
linux_journal_search |
NEW Search systemd journal |
</details>
<details> <summary><h3>๐ช Windows <code>2 tools</code></h3></summary>
| Tool | Description |
|---|---|
windows_service_status |
NEW Get Windows service status |
windows_eventlog_search |
NEW Search Windows Event Log |
</details>
<details> <summary><h3>๐ณ Docker <code>10 tools</code></h3></summary>
| Tool | Description |
|---|---|
docker_ps |
NEW List Docker containers (running/all) |
docker_images |
NEW List Docker images |
docker_logs |
NEW Get container logs with tail/since options |
docker_inspect |
NEW Get container or image details |
docker_stats |
NEW Get container resource usage (CPU/Memory) |
docker_exec |
NEW Execute command in container |
docker_start |
NEW Start a stopped container |
docker_stop |
NEW Stop a running container |
docker_restart |
NEW Restart a container |
docker_build |
NEW Build Docker image from Dockerfile |
</details>
<details> <summary><h3>๐ฆ Docker Compose <code>4 tools</code></h3></summary>
| Tool | Description |
|---|---|
compose_ps |
NEW List Compose services status |
compose_up |
NEW Start Compose services (detach, build options) |
compose_down |
NEW Stop Compose services (volumes, orphans options) |
compose_logs |
NEW Get Compose service logs |
</details>
<details> <summary><h3>โธ๏ธ Kubernetes <code>6 tools</code></h3></summary>
| Tool | Description |
|---|---|
k8s_get_pods |
NEW List Kubernetes pods |
k8s_get_deployments |
NEW List Kubernetes deployments |
k8s_logs |
NEW Get pod logs |
k8s_describe |
NEW Describe Kubernetes resource |
k8s_apply |
NEW Apply Kubernetes manifest (dry-run supported) |
k8s_delete |
NEW Delete Kubernetes resource (dry-run supported) |
</details>
<details> <summary><h3>๐ Spec-Kit <code>9 tools</code> - Spec-Driven Development</h3></summary>
| Tool | Description |
|---|---|
speckit_init |
NEW Initialize Spec-Kit in project (creates .speckit/ directory) |
speckit_status |
NEW Get Spec-Kit project status |
speckit_constitution |
NEW Read or update project constitution (principles) |
speckit_specify |
NEW Create feature specification from description |
speckit_plan |
NEW Generate implementation plan for a feature |
speckit_tasks |
NEW Generate task list from plan |
speckit_checklist |
NEW Create implementation checklist |
speckit_analyze |
NEW Analyze project for consistency |
speckit_list_features |
NEW List all features in project |
</details>
<details> <summary><h3>๐ MCP Tool Discovery <code>3 tools</code></h3></summary>
| Tool | Description |
|---|---|
mcp_search_tools |
NEW Search MCP tools by name or description |
mcp_list_categories |
NEW List all tool categories with counts |
mcp_get_tool_info |
NEW Get detailed information about a specific tool |
</details>
<details> <summary><h3>๐๏ธ Database Foundation <code>6 tools</code></h3></summary>
| Tool | Description |
|---|---|
db_connect |
NEW Test database connection (SQLite/PostgreSQL/MySQL) |
db_tables |
NEW List all tables in database |
db_schema |
NEW Get schema for a specific table |
db_query |
NEW Execute read-only SQL query (SELECT only) |
db_explain |
NEW Explain query execution plan |
db_health |
NEW Check database health and statistics |
Supported Databases:
- SQLite: File-based, zero configuration
- PostgreSQL: Full-featured relational database
- MySQL: Popular open-source database
Security: All queries are SELECT-only. Dangerous patterns (DROP, DELETE, etc.) are blocked.
</details>
<details> <summary><h3>โฐ Time Tools <code>4 tools</code></h3></summary>
| Tool | Description |
|---|---|
time_current |
NEW Get current time in specified timezone |
time_convert |
NEW Convert time between timezones |
time_format |
NEW Format datetime with custom pattern |
time_diff |
NEW Calculate difference between two times |
</details>
<details> <summary><h3>๐ข Calculator Tools <code>3 tools</code></h3></summary>
| Tool | Description |
|---|---|
calc_expression |
NEW Evaluate mathematical expression safely |
calc_unit_convert |
NEW Convert between units (length, weight, temp, etc.) |
calc_statistics |
NEW Calculate statistics (mean, median, stddev, etc.) |
</details>
<details> <summary><h3>๐ง Sequential Thinking <code>3 tools</code></h3></summary>
| Tool | Description |
|---|---|
think_step |
NEW Record a thinking step in sequential reasoning |
think_branch |
NEW Create alternative thinking branch |
think_summarize |
NEW Summarize a thinking session |
</details>
<details> <summary><h3>๐ฒ Generator Tools <code>4 tools</code></h3></summary>
| Tool | Description |
|---|---|
gen_uuid |
NEW Generate UUID (v1 or v4) |
gen_random |
NEW Generate random numbers |
gen_hash |
NEW Generate hash (MD5, SHA256, etc.) |
gen_password |
NEW Generate secure password with entropy |
</details>
๐ Security
Miyabi implements enterprise-grade security to protect your system:
๐ก๏ธ Input Sanitization
// All shell commands are sanitized to prevent injection
sanitizeShellArg(input) // Removes dangerous characters
sanitizePath(basePath, userPath) // Prevents path traversal
isValidHostname(host) // Validates network targets
isValidPid(pid) // Validates process IDs
๐ Security Features
| Feature | Protection |
|---|---|
| Command Injection | All shell arguments sanitized |
| Path Traversal | Base path validation on all file operations |
| DNS Rebinding | Hostname validation for network tools |
| Process Safety | PID validation and confirmation for kill operations |
| File Size Limits | Prevents memory exhaustion attacks |
โ Safe by Default
- All operations use secure defaults
- No dangerous operations without explicit confirmation
- Input validation on all user-provided data
- Error messages don't leak sensitive information
๐ Plugins
<div align="center">
Included Claude Code Plugins (v2.0.0)
</div>
This package includes the complete Miyabi plugin ecosystem:
<details open> <summary><h3>๐ค 38 AI Agents</h3></summary>
| Agent | Description |
|---|---|
coordinator-agent |
Multi-agent orchestration and task distribution |
codegen-agent |
AI-driven code generation (Rust, TypeScript, Python) |
pr-agent |
Pull request creation and management |
review-agent |
Code review automation |
issue-agent |
GitHub issue analysis and triage |
deployment-agent |
CI/CD and deployment automation |
analytics-agent |
Data analysis and visualization |
honoka-agent |
Udemy course creation specialist |
marketing-agent |
Marketing strategy and content |
crm-agent |
Customer relationship management |
jonathan-ive-design-agent |
UI/UX design with Apple design principles |
lp-gen-agent |
Landing page generation |
narration-agent |
Voice narration and script writing |
| ... and 25 more agents |
</details>
<details> <summary><h3>๐ฏ 22 Development Skills</h3></summary>
| Skill | Description |
|---|---|
rust-development |
Rust build, test, clippy, fmt workflow |
git-workflow |
Conventional commits and PR workflow |
tdd-workflow |
Test-driven development patterns |
security-audit |
Security scanning and vulnerability checks |
performance-analysis |
Profiling and optimization |
debugging-troubleshooting |
Error diagnosis and resolution |
documentation-generation |
Auto-generate docs from code |
project-setup |
New project scaffolding |
dependency-management |
Package updates and auditing |
context-eng |
Context window optimization |
issue-analysis |
Issue triage and prioritization |
voicevox |
Japanese voice synthesis |
tmux-iterm-integration |
Terminal session management |
paper2agent |
Research paper to agent conversion |
business-strategy-planning |
Business analysis workflows |
sales-crm-management |
Sales pipeline automation |
market-research-analysis |
Competitive analysis |
content-marketing-strategy |
Content planning |
growth-analytics-dashboard |
Growth metrics tracking |
agent-execution |
Agent spawning and management |
claude-code-x |
Extended Claude Code workflows |
</details>
<details> <summary><h3>๐ 56 Slash Commands</h3></summary>
| Command | Description |
|---|---|
/deploy |
Execute deployment pipeline |
/pr-create |
Create pull request |
/issue-create |
Create GitHub issue |
/health-check |
System health verification |
/security-scan |
Run security audit |
/dashboard |
Show project dashboard |
/worktree-create |
Create git worktree |
/tmux-orchestra-start |
Start tmux orchestration |
/codex |
OpenAI Codex integration |
/voicevox |
Voice synthesis |
/generate-docs |
Generate documentation |
/test-escalation |
Run test escalation |
| ... and 44 more commands |
</details>
<details> <summary><h3>๐ช 24 Hooks</h3></summary>
| Hook | Description |
|---|---|
agent-complete.sh |
Post-agent execution |
agent-worktree-pre.sh |
Before worktree creation |
agent-worktree-post.sh |
After worktree creation |
auto-format.sh |
Auto-format on save |
validate-rust.sh |
Rust validation pre-commit |
validate-typescript.sh |
TypeScript validation |
git-ops-validator.sh |
Git operation validation |
codex-monitor.sh |
Codex process monitoring |
session-keepalive.sh |
Session persistence |
notification.sh |
Desktop notifications |
| ... and 14 more hooks |
</details>
Plugin Installation
Plugins are included in plugins-unpacked/ directory when installed via npm:
# Access plugins after npm install
ls node_modules/miyabi-mcp-bundle/plugins-unpacked/
๐๏ธ Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Claude Desktop โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP Protocol
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Miyabi MCP Bundle โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Tool Router โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ โ โ โ โ โ โ
โ โผ โผ โผ โผ โผ โผ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Git โโ Tmux โโ Log โโResourceโโNetworkโโGitHubโ ... โ
โ โ 10 โโ 9 โโ 6 โโ 8 โโ 8 โโ 12 โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐จโ๐ป Development
# Clone the repository
git clone https://github.com/ShunsukeHayashi/miyabi-mcp-bundle.git
cd miyabi-mcp-bundle
# Install dependencies
npm install
# Development mode (with hot reload)
npm run dev
# Build for production
npm run build
# Run linter
npm run lint
# Run tests
npm test
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
๐ License
MIT ยฉ Shunsuke Hayashi
<div align="center">
๐ฏ๐ต ๆฅๆฌ่ช
</div>
โจ Miyabiใจใฏ๏ผ
้ (Miyabi) - ๆด็ทดใใใๅช็พใใๆๅณใใๆฅๆฌ่ช
Claude Desktopใๅผทๅใช้็บใณใใณใใปใณใฟใผใซๅคๆใใใๆใๅ ๆฌ็ใชMCPใตใผใใผใงใใ
๐ฏ ็นๅพด
- ๐ 172 MCPใใผใซ ใ21ใซใใดใช + ใใซในใใงใใฏใซ็ตฑๅ
- ๐ ใจใณใฟใผใใฉใคใบใฐใฌใผใใฎใปใญใฅใชใใฃ - ใคใณใธใงใฏใทใงใณๅฏพ็ญใใในใใฉใใผใตใซ้ฒๆญข
- โก ใคใณใใชใธใงใณใใญใฃใใทใฅ - ้ซ้ใฌในใใณใน
- 38 AIใจใผใธใงใณใ - ใณใผใ็ๆใใฌใใฅใผใใใใญใค็ญ
- 22 ้็บในใญใซ - RustใGitใTDDใใปใญใฅใชใใฃ็ญ
- 56 ในใฉใใทใฅใณใใณใ - ใใใญใคใPRไฝๆใIssue็ฎก็็ญ
- 24 ใใใฏ - ่ชๅใใฉใผใใใใใใชใใผใทใงใณ็ญ
- ่จญๅฎไธ่ฆ - ใใใซไฝฟใใ
- ๆฌ็ช็ฐๅขๅฏพๅฟ - ๅฎ้ใฎ้็บ็ฐๅขใงใในใๆธใฟ
๐ฆ ใคใณในใใผใซ
# npx๏ผๆจๅฅจ๏ผ
npx miyabi-mcp-bundle
# ใฐใญใผใใซใคใณในใใผใซ
npm install -g miyabi-mcp-bundle
โ๏ธ Claude Desktop ่จญๅฎ
{
"mcpServers": {
"miyabi": {
"command": "npx",
"args": ["-y", "miyabi-mcp-bundle"],
"env": {
"MIYABI_REPO_PATH": "/path/to/your/repo",
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}
๐ ใฏใคใใฏในใฟใผใ
่จญๅฎๅพใClaude Desktopใงไปฅไธใ่ฉฆใใฆใใ ใใ๏ผ
๐ ใใทในใใ ใชใฝใผในใ่กจ็คบใใฆใ
๐ ใgitใฎ็ถๆ
ใ็ขบ่ชใใฆใ
๐ ใๆ่ฟๅคๆดใใใใใกใคใซใ่ฆใใฆใ
๐ ใใจใฉใผใญใฐใๆค็ดขใใฆใ
๐ ใGitHubใฎIssueไธ่ฆงใ่กจ็คบใใฆใ
๐ ๏ธ ใใผใซใซใใดใช
| ใซใใดใช | ใใผใซๆฐ | ่ชฌๆ |
|---|---|---|
| ๐ Git Inspector | 19 | Git็ถๆ ใใใฉใณใใๅทฎๅใๅฑฅๆญดใใฟใฐใ่ฒข็ฎ่ ใใณใณใใชใฏใ |
| ๐บ Tmux Monitor | 10 | ใปใใทใงใณใใฆใฃใณใใฆใใใคใณ็ฎก็ |
| ๐ Log Aggregator | 7 | ใญใฐๆค็ดขใใจใฉใผใ่ญฆๅใ็ตฑ่จ |
| ๐ป Resource Monitor | 10 | CPUใใกใขใชใใใฃในใฏใใใใใชใผใๆธฉๅบฆ |
| ๐ Network Inspector | 15 | ใคใณใฟใผใใงใผในใๆฅ็ถใใใผใใDNSใSSL่จผๆๆธใtraceroute |
| โ๏ธ Process Inspector | 14 | ใใญใปในไธ่ฆงใใใชใผใ่ฉณ็ดฐใในใฌใใใI/O |
| ๐ File Watcher | 10 | ใใกใคใซๅคๆดใๆค็ดขใๆฏ่ผใใใงใใฏใตใ |
| ๐ค Claude Monitor | 8 | Claude Desktop่จญๅฎใใญใฐใMCP็ถๆ |
| ๐ GitHub Integration | 21 | IssueใPRใใฌใใฅใผใใฉใใซใใชใชใผใน |
| ๐ฅ Health Check | 1 | ใทในใใ ใใซในๆค่จผ |
| ๐ง Linux systemd | 3 | systemdใฆใใใใใธใฃใผใใซ |
| ๐ช Windows | 2 | ใตใผใใน็ถๆ ใใคใใณใใญใฐ |
| ๐ณ Docker | 10 | ใณใณใใไธ่ฆงใใญใฐใstatsใ่ตทๅ/ๅๆญขใใใซใ |
| ๐ฆ Docker Compose | 4 | ใตใผใใน่ตทๅ/ๅๆญขใใญใฐใ็ถๆ |
| โธ๏ธ Kubernetes | 6 | PodใDeploymentใใญใฐใdescribeใapply/delete |
| ๐ Spec-Kit | 9 | Spec-Driven Development๏ผspecไฝๆใๆค่จผ๏ผ |
| ๐ MCP Tool Discovery | 3 | ใใผใซๆค็ดขใใซใใดใชไธ่ฆง |
| ๐๏ธ Database Foundation | 6 | SQLite/PostgreSQL/MySQL ๅบๆฌๆไฝ |
| โฐ Time Tools | 4 | ใฟใคใ ใพใผใณใใใฉใผใใใใๅทฎๅ |
| ๐งฎ Calculator Tools | 3 | ๆฐๅผใๅไฝๅคๆใ็ตฑ่จ |
| ๐ง Sequential Thinking | 3 | ๆ่ในใใใใๅๅฒใ่ฆ็ด |
| ๐ฒ Generator Tools | 4 | UUIDใไนฑๆฐใใใใทใฅใใในใฏใผใ |
<div align="center">
โญ ใใฎใใญใธใงใฏใใๅฝน็ซใฃใใใในใฟใผใใ้กใใใพใ๏ผ
ใใชใใฎในใฟใผใใไปใฎ้็บ่ ใใใฎใใผใซใ็บ่ฆใใๆๅฉใใซใชใใพใใ
<br />
๐ Star History
<br />
๐ค ใณใณใใชใใฅใผใทใงใณๆญ่ฟ๏ผ
PRใIssueใงใฎใใฃใผใใใใฏใใๅพ ใกใใฆใใพใใ
<br />
Made with โค๏ธ by Shunsuke Hayashi
<br />
<br />
๐ 172 Tools | ๐ Enterprise Security | โก Zero Config | ๐ Cross-Platform
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.