AI Skill Hub 推荐使用:my-ai-tools MCP工具 是一款优质的MCP工具。AI 综合评分 7.2 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
my-ai-tools MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
my-ai-tools MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/jellydn/my-ai-tools
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"my-ai-tools-mcp--": {
"command": "npx",
"args": ["-y", "my-ai-tools"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 my-ai-tools MCP工具 执行以下任务... Claude: [自动调用 my-ai-tools MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"my-ai-tools_mcp__": {
"command": "npx",
"args": ["-y", "my-ai-tools"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Comprehensive configuration management for AI coding tools - Replicate my complete setup for Claude Code, OpenCode, fx, Muse Code, Amp, Kilo CLI, Codex, Devin CLI, Kimi Code, Gemini CLI, Antigravity CLI, Pi, Oh My Pi, GitHub Copilot CLI, Cursor Agent CLI, Factory Droid, Cline, Grok CLI, MiMo-Code, Qoder CLI, DeepSeek Harness, Kiro CLI, Delta, Hunk, Codiff, ctx, Open Code Review, CCS, and Reasonix with custom configurations, MCP servers, skills, plugins, and commands.
📖 View Documentation Website - Interactive landing page with full documentation and search.
1. Git for Windows - Includes Git Bash (required for running shell scripts) - Download from: https://git-scm.com/download/win - During installation, choose "Use Git and optional Unix tools from the Command Prompt" to add Git Bash to PATH
2. jq (JSON processor) - Auto-installed via winget if available - Manual install: winget install -e --id jqlang.jq
curl -fsSL https://cli.devin.ai/install.sh | bash
Install directly without cloning the repository:
curl -fsSL https://ai-tools.itman.fyi/install.sh | bash
Security Note: Review the script before running:> curl -fsSL https://ai-tools.itman.fyi/install.sh -o install.sh > cat install.sh # Review the script > bash install.sh >
Options:
```bash
curl -fsSL https://ai-tools.itman.fyi/install.sh | bash -s -- --backup
Clone the repository and run the installer:
git clone https://github.com/jellydn/my-ai-tools.git
cd my-ai-tools
./cli.sh
Options:
--dry-run - Preview changes without making them--backup - Backup existing configs before installing--no-backup - Skip backup prompt-y / --yes - Non-interactive mode; only installs/configures your active tool set (amp, codex, ctx, cursor, fx, kilo, muse, opencode, open_code_review, pi, omp, antigravity, ai-switcher, claude, reasonix). Shared infra (plugins, skills, global tools) still installed. Auto-activated in CI/piped input.--migrate-gemini - One-step Gemini→Antigravity CLI migrationCopy configurations from this repository to your home directory (~/.claude/, ~/.config/opencode/, etc.):
./cli.sh [--dry-run] [--backup] [--no-backup] [-y|--yes] [--migrate-gemini]
./cli.sh
curl -fsSL https://dev.meta.ai/install.sh | sh
The installer supports Windows via PowerShell or Git Bash.
curl -fsSL https://claude.ai/install.sh | bash
Run the setup script to configure MCP servers:
./cli.sh
The script will prompt you to install each MCP server:
context7 - Documentation lookup for any librarysequential-thinking - Multi-step reasoning for complex analysisqmd - Quick Markdown Search with AI-powered knowledge managementagentmemory - "Persistent memory" per the tool's branding; we use it session-only (qmd is the durable KB; see ~/.ai-tools/MEMORY.md)fff - Fast file search with built-in memory for AI agentsreact-grab-mcp - React component extraction and analysislogpilot - AI-powered log analysis and tmux session monitoringConfiguration in ~/.claude/mcp-servers.json:
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"qmd": {
"command": "qmd",
"args": ["mcp"]
},
"agentmemory": {
"command": "npx",
"args": ["-y", "@agentmemory/mcp"]
},
"fff": {
"type": "stdio",
"command": "fff-mcp",
"args": []
},
"react-grab-mcp": {
"command": "npx",
"args": ["-y", "@react-grab/mcp", "--stdio"]
},
"logpilot": {
"command": "logpilot",
"args": ["mcp-server"]
}
}
}
Or use the CLI (installed globally for all projects):
claude mcp add --scope user --transport stdio context7 -- npx -y @upstash/context7-mcp@latest
claude mcp add --scope user --transport stdio sequential-thinking -- npx -y @modelcontextprotocol/server-sequential-thinking
claude mcp add --scope user --transport stdio qmd -- qmd mcp
claude mcp add --scope user --transport stdio agentmemory -- npx -y @agentmemory/mcp
claude mcp add --scope user --transport stdio fff -- fff-mcp # Requires: curl -fsSL https://dmtrkovalenko.dev/install-fff-mcp.sh | bash
claude mcp add --scope user --transport stdio logpilot -- logpilot mcp-server # Requires: cargo install logpilot
claude mcp add --scope user --transport stdio sem -- sem-mcp # Requires: cargo install --git https://github.com/Ataraxy-Labs/sem sem-mcp
Auto-Install:./cli.shautomatically installs Rust viarustupwhen these cargo-dependent MCP servers are selected, so you don't need to install Rust manually beforehand (manualclaude mcp addstill requires a pre-installed Rust toolchain).
MCP Scopes: ---scope user(global): Available across all projects ---scope local(default): Only in current project directory ---scope project: Stored in.mcp.jsonfor team sharing
```bash
#### Installation
The setup script (`./cli.sh`) automatically checks marketplace availability before installing plugins. If marketplace is unavailable, it will offer to install local plugins only.
**Automated installation (recommended):**
bash ./cli.sh # Includes marketplace check and fallback to local plugins
**Manual installation** (requires marketplace access):
bash
claude plugin marketplace add backnotprop/plannotator claude plugin install plannotator@plannotator
claude plugin marketplace add jarrodwatts/claude-hud claude plugin install claude-hud@claude-hud
claude plugin marketplace add max-sixty/worktrunk claude plugin install worktrunk@worktrunk
claude plugin marketplace add openai/codex-plugin-cc claude plugin install codex@openai-codex
claude plugin marketplace add JuliusBrussee/caveman claude plugin install caveman@caveman
npx skills add jellydn/my-ai-tools --yes --global --agent claude-code
npx skills add jellydn/my-ai-tools --global --agent claude-code
```
Skills installation issues?
If you encounter issues:
npx --version)skills/ folder~/.claude/skills/--yes flag to select specific skillsCommon issues:
./cli.sh--global flagnpx skills remove --global| Plugin | Description | Source |
|---|---|---|
typescript-lsp | TypeScript language server | Official |
pyright-lsp | Python language server | Official |
context7 | Documentation lookup | Official |
frontend-design | UI/UX design assistance | Official |
learning-output-style | Interactive learning mode | Official |
swift-lsp | Swift language support | Official |
lua-lsp | Lua language support | Official |
code-simplifier | Code simplification | Official |
rust-analyzer-lsp | Rust language support | Official |
claude-md-management | Markdown management | Official |
plannotator | Plan annotation tool | Community |
plannotator-setup-goal | Turn ideas into goal packages | Local Marketplace |
prd | Product Requirements Documents | Local Marketplace |
ralph | PRD to JSON converter | Local Marketplace |
qmd-knowledge | Project knowledge management | Local Marketplace |
codemap | Parallel codebase analysis | Local Marketplace |
code-quality-review | Extremely strict maintainability review | Local Marketplace |
claude-hud | Status line with usage monitoring | Community |
worktrunk | Work management | Community |
codex | Codex code review & task delegation | Community |
caveman | Concise, high-signal response mode | Community |
codemap - Orchestrates parallel codebase analysis producing 7 structured documents in .planning/codebase/:
STACK.md - Technologies, dependencies, configurationINTEGRATIONS.md - 3rd party APIs, databases, authARCHITECTURE.md - System patterns, layers, data flowSTRUCTURE.md - Directory layout, key locationsCONVENTIONS.md - Code style, patterns, error handlingTESTING.md - Framework, structure, mocking, coverageCONCERNS.md - Tech debt, bugs, security issuesprd - Generate Product Requirements Documents
ralph - Convert PRDs to JSON for autonomous agent execution
qmd-knowledge - Project-specific knowledge management (guide)
Installed to ~/.config/devin/AGENTS.md with instructions for:
~/.ai-tools/best-practices.md```bash
Cognition AI's autonomous coding agent with deep cloud integration. Homepage | Docs
<details> <summary><strong>Installation & Configuration</strong></summary>
Run the setup script to install configurations to ~/.config/devin/:
./cli.sh
The setup script automatically deploys MCP servers and agent guidelines.
fx is a small native coding agent from Vercel Labs. The installer uses its official setup script on macOS and Linux, then installs this repository's global guidance to ~/.fx/AGENTS.md when fx is detected.
```bash
Muse Code is Meta's coding agent for terminal and CI workflows, powered by Muse Spark 1.2. Meta brought it out of beta on August 31, 2026 with inter-session messaging, multi-agent workflows, safe conversation rewind, and a developer-preview SDK. Announcement | Docs | SDK
```bash
npm install npm run index # build data/index.json (server mode) npm run index:browser # build public/index-browser.json (browser mode) source .env # load OPENAI_BASE_URL for server mode npm run dev # serve http://localhost:3000 ```
The assistant only answers from the retrieved repository excerpts, cites the source file paths, and says "This is not documented in the repository." when the context is insufficient.
The landing page also has a browser mode that runs the embedding and an instruction-tuned model (Qwen2.5-Coder-0.5B-Instruct) in the browser via WebGPU. Browser mode downloads the ~9 MB index and the ~300 MB model on the user's device.
```powershell
irm https://ai-tools.itman.fyi/install.ps1 -OutFile install.ps1 .\install.ps1 -DryRun
**Local execution:**
powershell
```bash
claude mcp list
curl -fsSL https://ai-tools.itman.fyi/install.sh | bash -s -- --migrate-gemini ```
The SDK is a per-project TypeScript dependency, not another global CLI. It requires Node.js 20+ and a separately installed muse binary, which it launches as a local muse serve host over the Muse Session Protocol:
npm install @muse-code/sdk
The pre-1.0 SDK supports starting and resuming sessions, streaming responses, handling permission requests, and controlling the local Muse host. Minor releases can contain breaking changes during the developer preview.
claude plugin list
| Tool | MCP Servers | Plugins/Extensions |
|---|---|---|
| **Claude Code** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Official + Community (plannotator, claude-hud, worktrunk, codex) |
| **OpenCode** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | @plannotator/opencode |
| **Codex** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, node_repl, ctx | - |
| **Kimi Code** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, logpilot, sem, ctx | Skills, MCP servers, and hooks via ~/.kimi-code/ |
| **Pi** | context7, sequential-thinking, qmd, codebase-memory-mcp, fff, react-grab-mcp, agentmemory, sem, ctx | Packages (pi-extension, pi-subagents, autoresearch, fff, mcp-adapter, simplify, rpiv-todo, btw, code-previews, codex-goal, commandcode-provider, pi-web-access, footer, tps-meter, pi-qwencloud-provider, pi-cursor-sdk) |
| **Oh My Pi** | Pi-compatible layout; MCP servers via ~/.omp/agent/mcp.json when present | Pi fork (@oh-my-pi/pi-coding-agent); configs managed under configs/omp/ |
| **Muse Code** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Workflows, session messaging, rewind, shared ~/.agents/skills, developer-preview SDK |
| **Amp** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Agent modes: fusion, glm-5.2, grok45, inkling, cursor-composer-2.5; plannotator; orca-agent-status |
| **Gemini** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Deprecated for Google One/unpaid tiers; migrate to Antigravity |
| **Antigravity** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx (via plugin) | my-ai-tools-gemini-migration |
| **Kilo** | (uses OpenCode config) | (uses OpenCode plugins) |
| **CommandCode** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | - |
| **Copilot** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | - |
| **Cursor** | context7 (via bunx), sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | - |
| **Conductor** | Per-harness (Claude Code, Codex, Cursor MCP configs) | Orchestrates parallel agents in isolated workspaces |
| **Factory** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | core, security-engineer, droid-evolved, autoresearch |
| **Orca** | - | Agent hooks (claude, gemini, codex, cursor, droid) |
| **Cline** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Global rules (AGENTS.md → ~/.cline/rules/, ~~/.agents/AGENTS.md), universal skills (~~/.agents/skills) |
| **Grok** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Default model grok-4.5 (high reasoning); UI auto + rosepine-moon; Kanagawa theme staged |
| **MiMo-Code** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | @plannotator/opencode, opencode-chrome-annotation |
| **Qoder CLI** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | - |
| **DeepSeek Harness** | context7, sequential-thinking, qmd, fff, sem, ctx | Cordis plugin composition; global AGENTS.md; native DeepSeek model route |
| **Kiro CLI** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | Steering files (AGENTS.md), slash commands, MCP servers, ACP |
| **Reasonix** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | DeepSeek-native; prefix-cache loop; [[plugins]] MCP in config.toml; ACP (reasonix acp); REASONIX.md/AGENTS.md memory; Kanagawa theme staged |
| **Delta** | — (desktop app — model providers are configured in settings) | Personal rules (~/.config/delta/AGENTS.md), isolated checkouts, collaborative threads |
| **Codiff** | — (desktop app — uses configured agent backend via settings) | — |
Before installing plugins, ensure:
To check marketplace availability:
```bash
claude plugin install typescript-lsp@claude-plugins-official claude plugin install pyright-lsp@claude-plugins-official claude plugin install context7@claude-plugins-official claude plugin install frontend-design@claude-plugins-official claude plugin install learning-output-style@claude-plugins-official claude plugin install swift-lsp@claude-plugins-official claude plugin install lua-lsp@claude-plugins-official claude plugin install code-simplifier@claude-plugins-official claude plugin install rust-analyzer-lsp@claude-plugins-official claude plugin install claude-md-management@claude-plugins-official
my-ai-tools 是一个专为开发者设计的全方位 AI 工具集成方案。它不仅集成了 Claude Code、Gemini、Antigravity 等多种强大的 AI 命令行工具,还通过 MCP (Model Context Protocol) 扩展了上下文感知能力。该项目旨在通过高度自动化的配置管理,为开发者提供一个开箱即用的终端 AI 工作环境。
本项目具备极高的生产力特性:支持一键式安装与双向配置同步,方便在不同设备间迁移 AI 设置;内置 Taste Learning 功能,能够学习并遵循您的代码风格;深度集成多种 MCP Servers(如 Context7、Sequential-thinking),极大增强了 AI 的逻辑推理与文件处理能力;此外,还支持通过 Slash Commands(如 /review, /mcp)快速调用预设技能与 Agent Teams。
在 Windows 环境下使用前,请确保已安装 Git for Windows(需包含 Git Bash),并在安装过程中选择“Use Git and optional Unix tools from the Command Prompt”以将 Git Bash 添加至 PATH。此外,系统还需要安装 jq 工具以处理 JSON 数据。对于其他系统,请确保具备基础的 Shell 环境及网络访问能力。
推荐使用一键安装脚本进行部署,无需手动克隆仓库即可快速启动。在 Linux/macOS 上,可以使用 `curl` 命令直接运行安装脚本;在 Windows 上,推荐使用 PowerShell 脚本。为了保障数据安全,安装过程中支持 `--backup` 参数以备份现有配置。如果您希望手动控制,也可以通过 `git clone` 仓库后运行 `cli.sh` 进行安装,并支持 `--dry-run` 模式预览变更。
项目设计为“终端优先”模式,非常适合习惯命令行操作的开发者。通过集成 Agent Guidelines,您可以让 AI 自动遵循特定的 Session 管理规范(如使用 tmux)和 Git 安全准则。您可以利用内置的指令与 Agent 进行交互,甚至通过特定的 MCP 工具实现文件搜索与知识管理(如 qmd)的无缝集成,实现高效的自动化开发流。
my-ai-tools 支持强大的双向配置同步功能,允许用户导出当前设置或安装预设配置。针对 Claude Code 等工具,用户可以通过插件机制扩展功能。在配置过程中,请确保您的 Claude Code 订阅支持插件功能,并已开启 Marketplace 访问权限。对于从 Gemini CLI 迁移的用户,可以使用 Antigravity CLI 的插件导入功能实现平滑过渡。
本项目主要面向 CLI 工具链,通过集成 Claude CLI 和 Antigravity CLI 提供服务。用户可以通过 `claude plugin list` 等命令验证插件支持情况。需要注意的是,Google 正在将 Gemini CLI 用户迁移至 Antigravity CLI,建议开发者关注相关迁移通知,利用本项目提供的迁移插件实现配置的平滑转换。
项目通过 MCP Servers 与 Plugins 的组合构建了完整的工作流。通过集成 context7、sequential-thinking、agentmemory 等 MCP 服务,Claude Code 等工具能够获得更强的逻辑思考与记忆能力。开发者可以根据需求管理��同的 Agent Skills,并通过插件扩展工具边界,实现从代码编写、评审到知识管理的闭环自动化体验。
aiskill88点评:项目专注MCP工具配置管理,提供实用的自动化解决方案。Stars适中,Shell实现简洁高效,但文档完整度需关注,适合有基础的开发者使用。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,my-ai-tools MCP工具 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | my-ai-tools |
| 原始描述 | 开源MCP工具:Comprehensive configuration management for AI coding tools - Replicate my comple。⭐75 · Shell |
| Topics | MCP配置管理AI编码Claude自动化 |
| GitHub | https://github.com/jellydn/my-ai-tools |
| License | MIT |
| 语言 | Shell |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端