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, Amp, Kilo CLI, Codex, Kimi Code, Gemini CLI, Antigravity CLI, Pi, GitHub Copilot CLI, Cursor Agent CLI, Factory Droid, Cline, Grok CLI, MiMo-Code, Qoder CLI, Kiro CLI, Codiff, ctx, Open Code Review, and CCS with custom configurations, MCP servers, skills, plugins, and commands.
📖 View Documentation Website - Interactive landing page with full documentation and search.
/resume, /taste, /review, /mcp, etc.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
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, kilo, opencode, open_code_review, pi, antigravity, ai-switcher). 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]
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
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
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 |
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)
npx skills add expo/skills --global --agent claude-code npx skills add vercel-labs/agent-skills --global --agent claude-code npx skills add factory-ai/factory-plugins --skill no-use-effect --global --agent claude-code npx skills add blader/humanizer --global --agent claude-code npx skills add jezweb/claude-skills --global --agent claude-code npx skills add mattpocock/skills --skill grill-with-docs --global --agent claude-code npx skills add mattpocock/skills --skill improve-codebase-architecture --global --agent claude-code npx skills add privatenumber/mac-ocr --skill mac-ocr --global --agent claude-code npx skills add mitsuhiko/agent-stuff --global --agent claude-code npx skills add github/gh-stack --global --agent claude-code npx skills add openclaw/agent-skills --skill autoreview --global --agent claude-code npx skills add av/facts --global --agent claude-code npx skills add GoogleChrome/modern-web-guidance --skill modern-web-guidance --global --agent claude-code npx skills add openai/codex --skill babysit-pr --global --agent claude-code npx skills add mvanhorn/last30days-skill --global --agent claude-code npx skills add shadcn/improve --global --agent claude-code npx skills add Gentleman-Programming/engram --skill engram-memory --global --agent claude-code npx skills add ctxrs/ctx --global --agent claude-code ```
curl -fsSL https://opencode.ai/install | bash
npm install -g command-code
curl -fsSL https://ampcode.com/install.sh | bash`
npm install -g @kaitranntt/ccs
Installed to ~/.commandcode/AGENTS.md with instructions for:
~/.ai-tools/best-practices.md</details>
---
```powershell
irm https://ai-tools.itman.fyi/install.ps1 -OutFile install.ps1 .\install.ps1 -DryRun
**Local execution:**
powershell
```bash
claude mcp list
All configuration files are located in the configs/claude/ directory:
settings.json - Main Claude Code settingsmcp-servers.json - MCP server configurationscommands/ - Custom slash commandsagents/ - Custom agent definitionsLocal marketplace plugins are in skills/.
- OpusPlan Mode: Use opusplan mode to plan with Opus and implement with Sonnet, then use Plannotator to review plans - Session Management: Disable auto-compact in settings. Monitor context usage with claude-hud. Press Ctrl+C to quit or /clear to reset between coding sessions. Create a plan with /handoffs and resume with /pickup when approaching 90% context limit on big tasks. - Git Worktree: Use git worktree with try CLI. For tmux users, use claude-squash to manage sessions efficiently. Use superset.sh to run multiple AI agents in parallel across worktrees - Neovim Integration: Check out tiny-nvim for a complete setup with sidekick.nvim or claudecode.nvim - Cost Optimization: Use CCS to switch between affordable providers. - OpenRouter Provider: To route Claude Code through OpenRouter instead of Anthropic directly, add these to ~/.claude/settings.json under "env":
{
"env": {
"ANTHROPIC_BASE_URL": "https://openrouter.ai/api",
"ANTHROPIC_API_KEY": "your-openrouter-api-key",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "openrouter/owl-alpha",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "openrouter/owl-alpha",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "openrouter/owl-alpha"
}
}
This repo's configs/claude/settings.json intentionally does not hardcode provider credentials, so you can choose your preferred provider via environment variables. See OpenRouter free models for no-cost options.
---
OpenAI-powered AI coding assistant. Homepage
<details> <summary><strong>Installation & Configuration</strong></summary>
Copy configs/opencode/opencode.json to ~/.config/opencode/:
{
"$schema": "https://opencode.ai/config.json",
"instructions": ["~/.ai-tools/best-practices.md", "~/.ai-tools/MEMORY.md"],
"theme": "kanagawa",
"default_agent": "plan",
"mcp": {
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"enabled": true
},
"qmd": {
"type": "local",
"command": ["qmd", "mcp"],
"enabled": true
},
"fff": {
"type": "local",
"command": ["fff-mcp"],
"enabled": true
},
"sequential-thinking": {
"type": "local",
"command": [
"npx",
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"enabled": true
},
"react-grab-mcp": {
"type": "local",
"command": ["npx", "-y", "@react-grab/mcp", "--stdio"],
"enabled": true
},
"logpilot": {
"type": "local",
"command": ["logpilot", "mcp-server"],
"enabled": true
},
"agentmemory": {
"type": "local",
"command": ["npx", "-y", "@agentmemory/mcp"],
"enabled": true
}
},
"agent": {
"build": {
"permission": {
"bash": {
"git push": "ask",
"qmd": "allow",
"qmd query": "allow",
"qmd get": "allow",
"qmd search": "allow",
"$HOME/.config/opencode/skill/qmd-knowledge/scripts/record.sh": "allow",
"$HOME/.claude/skills/qmd-knowledge/scripts/record.sh": "allow"
}
}
}
},
"plugin": [
"@plannotator/opencode@latest",
"opencode-chrome-annotation@latest"
],
"formatter": {
"biome": {
"command": ["biome", "check", "--write", "$FILE"],
"extensions": [".ts", ".tsx", ".js", ".jsx"]
},
"gofmt": {
"command": ["gofmt", "-w", "$FILE"],
"extensions": [".go"]
},
"prettier": {
"command": ["npx", "prettier", "--write", "$FILE"],
"extensions": [".md", ".mdx"]
},
"ruff": {
"command": ["ruff", "format", "$FILE"],
"extensions": [".py"]
},
"rustfmt": {
"command": ["rustfmt", "$FILE"],
"extensions": [".rs"]
},
"shfmt": {
"command": ["shfmt", "-w", "$FILE"],
"extensions": [".sh"]
},
"stylua": {
"command": ["stylua", "$FILE"],
"extensions": [".lua"]
}
}
}
Formatters: OpenCode automatically formats code after edits using:
.ts, .tsx, .js, .jsx).go).md, .mdx).py).rs).sh).lua)Similar to Claude Code's PostToolUse hooks, formatters run automatically after write/edit operations.
AI coding assistant that continuously learns your taste of writing code. Homepage
<details> <summary><strong>Installation & Configuration</strong></summary>
Run the setup script to install configurations to ~/.commandcode/:
./cli.sh
The setup script automatically configures MCP servers and copies agent guidelines.
AI coding assistant by Modular. Homepage
<details> <summary><strong>Installation & Configuration</strong></summary>
Copy configs/amp/settings.json to ~/.config/amp/:
{
"amp.dangerouslyAllowAll": true,
"amp.experimental.autoHandoff": { "context": 90 },
"amp.mcpServers": {
"context7": {
"url": "https://mcp.context7.com/mcp"
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"qmd": {
"command": "qmd",
"args": ["mcp"]
},
"fff": {
"command": "fff-mcp",
"args": []
},
"react-grab-mcp": {
"command": "npx",
"args": ["-y", "@react-grab/mcp", "--stdio"]
},
"logpilot": {
"command": "logpilot",
"args": ["mcp-server"]
},
"agentmemory": {
"command": "npx",
"args": ["-y", "@agentmemory/mcp"]
}
},
"amp.terminal.theme": "kanagawa"
}
See configs/amp/AGENTS.md for agent guidelines.
</details>
---
Universal AI profile manager for Claude Code. Homepage | Documentation
<details> <summary><strong>Installation & Configuration</strong></summary>
curl -fsSL https://ai-tools.itman.fyi/install.sh | bash -s -- --migrate-gemini ```
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, opencode-chrome-annotation |
| **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, autoresearch, hooks, fff, mcp-adapter, simplify, todo, btw, code-previews, codex-goal, dynamic-workflows, commandcode-provider, pi-web-access, footer, tps-meter) |
| **Amp** | context7, sequential-thinking, qmd, codebase-memory-mcp, agentmemory, fff, react-grab-mcp, logpilot, sem, ctx | - |
| **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 | Kanagawa palette staged (tokyonight until built-in) |
| **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 | - |
| **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 |
| **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
OpenCode supports community plugins that enhance functionality:
Plugins are automatically installed on next OpenCode launch.
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 类型,复制安装指令后粘贴到对应客户端