My AI Tools

v1.0.0Developer Toolsstable

Comprehensive configuration management for AI coding tools - Replicate my complete setup for Claude Code, OpenCode, Amp, Codex and Claude Code Switch with custom configurations, MCP servers, plugins, and commands.

ampclaude-codecodexopen-codeskills
Share:
77
Stars
0
Downloads
0
Weekly
0/5

What is My AI Tools?

My AI Tools is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to comprehensive configuration management for ai coding tools - replicate my complete setup for claude code, opencode, amp, codex and claude code switch with custom configurations, mcp servers, plugins, ...

Comprehensive configuration management for AI coding tools - Replicate my complete setup for Claude Code, OpenCode, Amp, Codex and Claude Code Switch with custom configurations, MCP servers, plugins, and commands.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Comprehensive configuration management for AI coding tools -

Use Cases

Replicate complete AI coding tool setups with custom configurations.
Share MCP servers, plugins, and commands across Claude Code and similar tools.
jellydn

Maintainer

LicenseMIT
Languageshell
Versionv1.0.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx my-ai-tools

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use My AI Tools

my-ai-tools is a configuration management toolkit — not a traditional MCP server, but a repository that installs and synchronizes a curated, battle-tested setup of MCP servers, plugins, agents, and custom commands across multiple AI coding tools including Claude Code, OpenCode, Amp, Codex, Cursor, GitHub Copilot CLI, Cline, and more. It comes with a one-line installer that copies configurations to the right locations for each tool, and a reverse-sync script that exports your customized local configs back to the repository for version control. The included MCP servers cover documentation lookup (context7), multi-step reasoning (sequential-thinking), knowledge management (qmd), persistent memory (agentmemory), fast file search (fff), React component inspection (react-grab-mcp), log analysis (logpilot), and semantic version control (sem).

Prerequisites

  • Bash 3.0 or later (required — the install scripts use bash-specific syntax)
  • Bun or Node.js LTS for running the included tools and scripts
  • Git for cloning the repository and version-controlling configurations
  • At least one AI coding tool installed: Claude Code, OpenCode, Amp, Codex, Cursor, or similar
  • On Windows: Git for Windows (Git Bash) or PowerShell 5.1+
1

Install using the one-line installer (recommended)

Run the remote installer script to automatically download and apply all configurations to your home directory. The script detects which AI tools you have installed and copies the appropriate configs.

curl -fsSL https://ai-tools.itman.fyi/install.sh | bash
2

Preview changes before installing

Run a dry-run first to see exactly what files will be created or modified without making any changes.

curl -fsSL https://ai-tools.itman.fyi/install.sh | bash -s -- --dry-run
3

Alternatively, clone and run locally

Clone the repository and run cli.sh directly for more control over the installation process.

git clone https://github.com/jellydn/my-ai-tools.git
cd my-ai-tools
./cli.sh --backup
4

Verify MCP servers are registered

After installation, restart Claude Code or your chosen AI tool. The MCP servers (context7, sequential-thinking, qmd, agentmemory, fff, react-grab-mcp, logpilot, sem) should appear in the tool list.

5

Export your customizations back to the repository

After customizing your local setup, use the reverse-sync script to export your current configurations back into the repository directory for version control and sharing.

./generate.sh
6

On Windows, use PowerShell or Git Bash

Windows users can install via PowerShell or Git Bash. The PowerShell installer handles Windows-specific path differences.

# PowerShell:
irm https://ai-tools.itman.fyi/install.ps1 | iex

# Git Bash:
git clone https://github.com/jellydn/my-ai-tools.git
cd my-ai-tools
bash cli.sh

My AI Tools Examples

Client configuration

Example of the MCP server configuration installed by my-ai-tools into Claude Code's config, showing the key bundled servers.

{
  "mcpServers": {
    "context7": {
      "command": "npx",
      "args": ["-y", "@upstash/context7-mcp"]
    },
    "sequential-thinking": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
    },
    "agentmemory": {
      "command": "npx",
      "args": ["-y", "@agentmemory/mcp"]
    },
    "fff": {
      "command": "npx",
      "args": ["-y", "fff-mcp"]
    }
  }
}

Prompts to try

Once installed, you can leverage all the bundled MCP servers in your AI coding workflow.

- "Look up the latest React 19 API documentation using context7"
- "Use sequential-thinking to break down the architecture for this new feature"
- "Search my codebase with fff for all files that import from the auth module"
- "Save this design decision to agentmemory so I can recall it later in the session"
- "Analyze the last 100 lines of my server log with logpilot and identify any errors"

Troubleshooting My AI Tools

Install script fails with 'bash: syntax error' when run with sh instead of bash

The scripts require bash, not sh/dash. Run explicitly with 'bash cli.sh' or ensure your shell is bash ('echo $SHELL'). The scripts include a guard that auto-relaunches under bash if invoked via sh, but some systems override this behavior.

MCP servers are not appearing after installation in Claude Code

Restart Claude Code completely after installation. Check ~/.claude/settings.json to confirm the MCP server entries were written. If the file is empty or missing the servers, re-run './cli.sh' from inside the cloned repository with explicit bash.

Windows installation fails with 'jq not found'

The installer requires jq for JSON processing. Install it via winget: 'winget install -e --id jqlang.jq'. If winget is not available, download jq from https://github.com/jqlang/jq/releases and place it on your PATH.

Frequently Asked Questions about My AI Tools

What is My AI Tools?

My AI Tools is a Model Context Protocol (MCP) server that comprehensive configuration management for ai coding tools - replicate my complete setup for claude code, opencode, amp, codex and claude code switch with custom configurations, mcp servers, plugins, and commands. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install My AI Tools?

Follow the installation instructions on the My AI Tools GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with My AI Tools?

My AI Tools works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is My AI Tools free to use?

Yes, My AI Tools is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "my-ai-tools": { "command": "npx", "args": ["-y", "my-ai-tools"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use My AI Tools?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides