freshcrate
Skin:/
Home > MCP Servers > agent

agent

A unified Model Context Protocol server implementation that aggregates multiple MCP servers into one.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

A unified Model Context Protocol server implementation that aggregates multiple MCP servers into one.

README

1MCP - One MCP Server for All

A unified Model Context Protocol server implementation that aggregates multiple MCP servers into one.

NPM Version NPM Downloads CodeQl GitHub Repo stars 1MCP Docs DeepWiki NPM License

Overview

1MCP (One MCP) is designed to simplify the way you work with AI assistants. Instead of configuring multiple MCP servers for different clients (Claude Desktop, Cherry Studio, Cursor, Roo Code, Claude, etc.), 1MCP provides a single, unified server.

Features

  • ๐Ÿ”„ Unified Interface: Aggregates multiple MCP servers into one
  • ๐Ÿงญ CLI Mode for Agents: Preferred workflow for Codex, Claude, and other AI agents using progressive disclosure
  • ๐Ÿ”’ OAuth 2.1 Authentication: Production-ready security with scope-based authorization
  • โšก High Performance: Efficient request forwarding with proper error handling
  • ๐Ÿ›ก๏ธ Security First: Stdio transport isolation, input sanitization, and comprehensive audit logging
  • ๐Ÿ”ง Easy Configuration: Single JSON configuration file with hot-reload support
  • ๐Ÿ“ˆ Health Monitoring: Built-in health check endpoints for monitoring and observability

Quick Start

1. Install 1MCP

Binary (Recommended - No Node.js Required):

# Linux/macOS
curl -L https://github.com/1mcp-app/agent/releases/latest/download/1mcp-linux-x64.tar.gz | tar -xz
sudo mv 1mcp /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/1mcp-app/agent/releases/latest/download/1mcp-win32-x64.zip" -OutFile "1mcp.zip"
Expand-Archive -Path "1mcp.zip" -DestinationPath "."

NPM:

npx -y @1mcp/agent --help

2. Add MCP Servers

1mcp mcp add context7 -- npx -y @upstash/context7-mcp
1mcp mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem ~/Documents

3. Start the Server

1mcp

4. Choose One Interface

Do not configure the same agent to use both direct MCP access and CLI mode at the same time.

If you switch an agent to CLI mode, remove that agent's existing MCP server configuration first. We recommend CLI mode for Codex, Claude, and similar agent-style sessions.

If you intentionally want direct MCP mode instead, connect that client to the unified endpoint:

For Cursor, add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "1mcp": {
      "url": "http://127.0.0.1:3050/mcp?app=cursor"
    }
  }
}

Install MCP Server to Cursor

For VSCode, add to settings.json:

{
  "servers": {
    "1mcp": {
      "url": "http://127.0.0.1:3050/mcp?app=vscode"
    }
  }
}

Install MCP Server to VSCode

For Claude Code:

claude mcp add -t http 1mcp "http://127.0.0.1:3050/mcp?app=claude-code"

Recommended: for Codex, Claude, and other agent-style CLI sessions, the user should run 1mcp cli-setup instead of configuring direct MCP attachment:

1mcp cli-setup --codex
# or
1mcp cli-setup --claude --scope repo --repo-root .

That's it! Your MCP servers stay behind one unified 1MCP runtime, and each agent should use one mode only. For agent sessions, the recommended choice is CLI mode. ๐ŸŽ‰

Commands

Core Commands

  • 1mcp [serve] - Start the 1MCP server (default command)
  • 1mcp mcp add <name> - Add a new MCP server to configuration
  • 1mcp mcp list - List all configured MCP servers
  • 1mcp mcp status [name] - Show server status and details
  • 1mcp instructions - Show the CLI playbook and current server inventory for agent workflows
  • 1mcp inspect [target] - Inspect available servers, tools, and tool schemas from a running 1MCP instance
  • 1mcp run <server>/<tool> - Call a tool against a running 1MCP instance
  • 1mcp cli-setup --codex|--claude - Install bootstrap hooks and startup references for Codex or Claude

For detailed command usage, run: 1mcp <command> --help

CLI Workflow

The user-facing setup step is 1mcp cli-setup. After that, the following CLI workflow is what the AI agent will normally run against a running 1mcp serve instance.

You can still run these commands manually to test the setup:

# Shell 1: start the aggregated MCP server
1mcp serve

# Shell 2: commands the AI agent will normally run
1mcp instructions
1mcp inspect context7
1mcp inspect context7/get-library-docs
1mcp run context7/get-library-docs --args '{"context7CompatibleLibraryID":"/mongodb/docs","topic":"aggregation pipeline"}'

Why CLI Mode?

CLI mode is the preferred path for agent sessions because it replaces broad direct-MCP exposure inside the agent loop with progressive disclosure:

  • instructions gives the playbook and current inventory
  • inspect <server> narrows discovery to one server
  • inspect <server>/<tool> narrows again to one tool schema
  • run executes only the chosen tool

This keeps MCP as the backend protocol while giving the agent a thinner frontend workflow with less tool and schema noise in context.

For a given agent, choose only one mode:

  • Direct MCP mode: keep that agent's MCP server config
  • CLI mode: remove that agent's MCP server config, run cli-setup, and let the AI agent use the CLI workflow

What the user normally runs:

1mcp cli-setup --codex
# or
1mcp cli-setup --claude --scope repo --repo-root .

What the AI agent normally runs after that:

1mcp instructions
1mcp inspect filesystem
1mcp inspect filesystem/read_file
1mcp run filesystem/read_file --args '{"path":"./mcp.json"}'

You may run those commands manually to verify the setup, but they are primarily designed for the agent workflow.

Documentation

๐Ÿ“š Complete Documentation - Comprehensive guides, API reference, and examples

Key Topics

How It Works

1MCP acts as a proxy, managing and aggregating multiple MCP servers. It starts and stops these servers as subprocesses and forwards requests from AI assistants to the appropriate server. This architecture allows for a single point of entry for all MCP traffic, simplifying management and reducing overhead.

For agent sessions, 1MCP also provides a CLI mode on top of that runtime. MCP remains the interoperability layer behind 1mcp serve; CLI mode changes how the agent discovers and calls tools so the workflow stays selective and scriptable.

Contributing

Contributions are welcome! Please read our CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

Release History

VersionChangesUrgencyDate
v0.32.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.32.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.32.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.32.1/1mcp-win32-x64.zip) - **macOS (ARM64High6/4/2026
v0.32.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.32.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.32.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.32.0/1mcp-win32-x64.zip) - **macOS (ARM64High5/19/2026
v0.31.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.31.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.31.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.31.0/1mcp-win32-x64.zip) - **macOS (ARM64High4/29/2026
v0.31.0-beta1## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.31.0-beta1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.31.0-beta1/1mcp-linux-arm64.tar.gzHigh4/20/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64High4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.3/1mcp-win32-x64.zip) - **macOS (ARM64Medium4/11/2026
v0.30.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.2/1mcp-win32-x64.zip) - **macOS (ARM64Medium3/23/2026
v0.30.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.1/1mcp-win32-x64.zip) - **macOS (ARM64Low3/12/2026
v0.30.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.30.0/1mcp-win32-x64.zip) - **macOS (ARM64Low3/2/2026
v0.30.0-beta1## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.0-beta1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.30.0-beta1/1mcp-linux-arm64.tar.gzLow2/9/2026
v0.29.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.29.2/1mcp-win32-x64.zip) - **macOS (ARM64Low2/9/2026
v0.29.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.29.1/1mcp-win32-x64.zip) - **macOS (ARM64Low1/27/2026
v0.29.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.29.0/1mcp-win32-x64.zip) - **macOS (ARM64Low1/25/2026
v0.29.0-beta7## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta7/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta7/1mcp-linux-arm64.tar.gzLow1/22/2026
v0.29.0-beta6## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta6/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta6/1mcp-linux-arm64.tar.gzLow1/18/2026
v0.29.0-beta5## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta5/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta5/1mcp-linux-arm64.tar.gzLow1/9/2026
v0.29.0-beta4## ๐Ÿ“ฆ Downloads > **โš ๏ธ Pre-release Version**: This is a pre-release build. Use `@next` tag for NPM and avoid `:latest` Docker tags in production. ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta4/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta4/1mcp-linux-arm64.tar.gzLow1/7/2026
v0.29.0-beta1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.29.0-beta1/1mcp-win32-Low12/28/2025
v0.28.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.28.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.28.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.28.1/1mcp-win32-x64.zip) - **macOS (ARM64Low12/25/2025
v0.28.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.28.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.28.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.28.0/1mcp-win32-x64.zip) - **macOS (ARM64Low12/21/2025
v0.27.4## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.4/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.4/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.27.4/1mcp-win32-x64.zip) - **macOS (ARM64Low12/9/2025
v0.27.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.27.3/1mcp-win32-x64.zip) - **macOS (ARM64Low11/27/2025
v0.27.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.27.2/1mcp-win32-x64.zip) - **macOS (ARM64Low11/18/2025
v0.27.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.27.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.27.0/1mcp-win32-x64.zip) - **macOS (ARM64Low11/1/2025
v0.26.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.26.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.26.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.26.1/1mcp-win32-x64.zip) - **macOS (ARM64Low10/24/2025
v0.26.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.26.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.26.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.26.0/1mcp-win32-x64.zip) - **macOS (ARM64Low10/24/2025
v0.25.5## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.5/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.5/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.5/1mcp-win32-x64.zip) - **macOS (ARM64Low10/22/2025
v0.25.4## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.4/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.4/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.4/1mcp-win32-x64.zip) - **macOS (ARM64Low10/13/2025
v0.25.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.3/1mcp-win32-x64.zip) - **macOS (ARM64Low10/13/2025
v0.25.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.2/1mcp-win32-x64.zip) - **macOS (ARM64Low10/13/2025
v0.25.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.1/1mcp-win32-x64.zip) - **macOS (ARM64Low10/12/2025
v0.25.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.25.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.25.0/1mcp-win32-x64.zip) - **macOS (ARM64Low10/10/2025
v0.24.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.24.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.24.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.24.0/1mcp-win32-x64.zip) - **macOS (ARM64Low10/8/2025
v0.23.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.23.2/1mcp-win32-x64.zip) - **macOS (ARM64Low9/22/2025
v0.23.1## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.1/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.1/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.23.1/1mcp-win32-x64.zip) - **macOS (ARM64Low9/21/2025
v0.23.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.0/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.23.0/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.23.0/1mcp-win32-x64.zip) - **macOS (ARM64Low9/18/2025
v0.22.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.22.3/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.22.3/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.22.3/1mcp-win32-x64.zip) - **macOS (ARM64Low9/15/2025
v0.22.1## ๐Ÿ“ฆ Downloads ### Docker Images ```bash # Extended version (recommended) docker pull ghcr.io/1mcp-app/agent:v0.22.1 docker pull ghcr.io/1mcp-app/agent:latest # Lite version (minimal dependencies) docker pull ghcr.io/1mcp-app/agent:v0.22.1-lite docker pull ghcr.io/1mcp-app/agent:lite ``` ### NPM Installation ```bash npm install -g @1mcp/agent ``` ### ๐Ÿš€ Features - Enhance binary distribution with multi-platform support and compressed archives (#116) ### ๐Ÿ’ผ Other - ULow9/14/2025
v0.22.2## ๐Ÿ“ฆ Downloads ### Binary Downloads Compressed archives containing platform-specific binaries: - **Linux (x64)**: [`1mcp-linux-x64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.22.2/1mcp-linux-x64.tar.gz) - **Linux (ARM64)**: [`1mcp-linux-arm64.tar.gz`](https://github.com/1mcp-app/agent/releases/download/v0.22.2/1mcp-linux-arm64.tar.gz) - **Windows (x64)**: [`1mcp-win32-x64.zip`](https://github.com/1mcp-app/agent/releases/download/v0.22.2/1mcp-win32-x64.zip) - **macOS (ARM64Low9/14/2025
v0.22.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Platform-specific binaries are available for download: - **Linux (x64)**: [`1mcp-linux-x64`](https://github.com/1mcp-app/agent/releases/download/v0.22.0/1mcp-linux-x64) - **Windows (x64)**: [`1mcp-win32-x64.exe`](https://github.com/1mcp-app/agent/releases/download/v0.22.0/1mcp-win32-x64.exe) - **macOS (ARM64)**: [`1mcp-darwin-arm64`](https://github.com/1mcp-app/agent/releases/download/v0.22.0/1mcp-darwin-arm64) ### Docker Images ```bash # Extended version Low9/12/2025
v0.21.0## ๐Ÿ“ฆ Downloads ### Binary Downloads Platform-specific binaries are available for download: - **Linux (x64)**: [`1mcp-linux-x64`](https://github.com/1mcp-app/agent/releases/download/v0.21.0/1mcp-linux-x64) - **Windows (x64)**: [`1mcp-win32-x64.exe`](https://github.com/1mcp-app/agent/releases/download/v0.21.0/1mcp-win32-x64.exe) - **macOS (ARM64)**: [`1mcp-darwin-arm64`](https://github.com/1mcp-app/agent/releases/download/v0.21.0/1mcp-darwin-arm64) ### Docker Images ```bash # Extended version Low9/5/2025
v0.20.3## ๐Ÿ“ฆ Downloads ### Binary Downloads Platform-specific binaries are available for download: - **Linux (x64)**: [`1mcp-linux-x64`](https://github.com/1mcp-app/agent/releases/download/v0.20.3/1mcp-linux-x64) - **Windows (x64)**: [`1mcp-win32-x64.exe`](https://github.com/1mcp-app/agent/releases/download/v0.20.3/1mcp-win32-x64.exe) - **macOS (ARM64)**: [`1mcp-darwin-arm64`](https://github.com/1mcp-app/agent/releases/download/v0.20.3/1mcp-darwin-arm64) ### Docker Images ```bash # Extended version Low9/3/2025
v0.20.2## [0.20.2] - 2025-08-29 ### ๐Ÿš€ Features - Improve Dockerfile with version pinning and cleanup by @xizhibei - Enhance Docker setup with multi-stage builds and new image variants by @xizhibei - Update Docker configuration and add Dockerfile for multi-stage build by @xizhibei [0.20.2]: https://github.com/1mcp-app/agent/compare/v0.20.1..v0.20.2 <!-- generated by git-cliff -->Low8/29/2025
v0.20.1## [0.20.1] - 2025-08-27 ### ๐Ÿ› Bug Fixes - Update tag filtering logic in requestHandlers by @xizhibei [0.20.1]: https://github.com/1mcp-app/agent/compare/v0.20.0..v0.20.1 <!-- generated by git-cliff -->Low8/27/2025
v0.20.0## [0.20.0] - 2025-08-27 ### ๐Ÿš€ Features - Add sensitive data redaction in list command output by @xizhibei - Enhance tag extraction and validation in middleware by @xizhibei - Introduce advanced tag filtering with new tag-filter parameter by @xizhibei - Enhance OAuth route handling with loading manager integration by @xizhibei ### ๐Ÿ› Bug Fixes - Improve OAuth server name sanitization for CodeQL detection by @xizhibei - Sanitize OAuth server names in test fixture logging by @xizhibei ### ๐Ÿ“š DLow8/27/2025
v0.19.0## [0.19.0] - 2025-08-21 ### ๐Ÿš€ Features - Add restart configuration options for stdio servers by @xizhibei - Add claude GitHub actions by @xizhibei in [#98](https://github.com/1mcp-app/agent/pull/98) - Update Smithery configuration for container runtime by @xizhibei ### ๐Ÿ› Bug Fixes - Improve mocking of StdioClientTransport in restartableStdioTransport tests by @xizhibei in [#97](https://github.com/1mcp-app/agent/pull/97) ### ๐Ÿ’ผ Other - MCP Trust Score by @Matvey-Kuk in [#95](https://github.Low8/22/2025
v0.18.1## [0.18.1] - 2025-08-18 ### ๐Ÿš€ Features - Enhance configuration file monitoring and modification detection by @xizhibei ### ๐Ÿ“š Documentation - Update README with additional badges for project visibility by @xizhibei ### ๐Ÿงช Testing - Improve mocking for file system interactions in McpConfigManager tests by @xizhibei [0.18.1]: https://github.com/1mcp-app/agent/compare/v0.18.0..v0.18.1 <!-- generated by git-cliff -->Low8/18/2025
v0.18.0## [0.18.0] - 2025-08-15 ### ๐Ÿš€ Features - Add example environment configuration and update .gitignore by @xizhibei - Introduce ONE_MCP_LOG_LEVEL for enhanced logging configuration by @xizhibei - Enhance secure logging and add OAuth-related tests by @xizhibei - Add pagination support documentation in English and Chinese by @xizhibei - Add notifications for clients after configuration reload by @xizhibei - Implement secure logging functionality to redact sensitive information by @xizhibei - RestLow8/15/2025
v0.17.0## [0.17.0] - 2025-08-07 ### ๐Ÿš€ Features - Add async loading option to dev command by @xizhibei - Enhance consolidation detection logic in tests by @xizhibei - Enhance add and update commands with " -- " pattern support by @xizhibei - Add build step to GitHub Actions workflow by @xizhibei - Add support for 'claude-desktop' in app configuration and update app preset format by @xizhibei - Add platform-specific contributions section and enhance app preset warnings by @xizhibei - Implement asynchroLow8/7/2025
v0.16.0## [0.16.0] - 2025-07-30 ### ๐Ÿš€ Features - Add health info level configuration and sanitization features by @xizhibei - Implement health monitoring endpoints and service by @xizhibei ### ๐Ÿ’ผ Other - Merge pull request #86 from 1mcp-app/docs-website by @xizhibei in [#86](https://github.com/1mcp-app/agent/pull/86) ### ๐Ÿ“š Documentation - Remove outdated Prometheus monitoring examples from health check documentation by @xizhibei - Update logo references and add new logo image by @xizhibei - EnhancLow8/4/2025
v0.15.0## [0.15.0] - 2025-07-22 ### ๐Ÿš€ Features - Implement trust proxy configuration for Express.js by @xizhibei - Integrate authentication middleware into SSE and streamable HTTP routes by @xizhibei - Enhance ExpressServer with MCP configuration and scope support by @xizhibei - Add startup logo display utility by @xizhibei ### ๐Ÿ’ผ Other - Merge pull request #80 from 1mcp-app/dependabot/npm_and_yarn/npm_and_yarn-e04d5d616f by @xizhibei in [#80](https://github.com/1mcp-app/agent/pull/80) ### ๐Ÿšœ RefacLow7/22/2025
v0.14.0## [0.14.0] - 2025-07-21 ### ๐Ÿš€ Features - Implement centralized HTTP request logging middleware by @xizhibei - Introduce ServerStatus enum and enhance connection management by @xizhibei - Add external URL support for OAuth callbacks by @xizhibei ### ๐Ÿ’ผ Other - Merge pull request #79 from 1mcp-app/feat/external-url by @xizhibei in [#79](https://github.com/1mcp-app/agent/pull/79) - Merge pull request #77 from 1mcp-app/dependabot/npm_and_yarn/npm_and_yarn-20b018c2ea by @xizhibei in [#77](https:/Low7/21/2025
v0.13.1## [0.13.1] - 2025-07-16 ### ๐Ÿš€ Features - Introduce client session management repository and file storage service by @xizhibei - Enhance OAuth session management and client data handling by @xizhibei ### ๐Ÿ› Bug Fixes - Remove FILE_PREFIX from AUTH_CONFIG session settings by @xizhibei - Update tag filtering logic to match any tag and enhance test coverage by @xizhibei ### ๐Ÿ’ผ Other - Merge pull request #76 from 1mcp-app/fix/oauth by @xizhibei in [#76](https://github.com/1mcp-app/agent/pull/76)Low7/16/2025
v0.13.0## [0.13.0] - 2025-07-15 ### OAuth features snapshot From now on, 1mcp support oauth servers, e.g. ```json { "mcpServers": { "notion": { "url": "https://mcp.notion.com/sse", "tags": ["notion"], "disabled": false }, "sentry": { "url": "https://mcp.sentry.dev/sse", "tags": ["sentry"], "disabled": false } } ``` <img width="1284" height="744" alt="auth-management" src="https://github.com/user-attachments/assets/4fe968f7Low7/15/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

studioOpen-source control plane for your AI agents. Connect tools, hire agents, track every token and dollarv2.396.1
musterMCP tool management and workflow proxyv0.3.1
gramSecurely scale AI usage across your organization. Control plane for building, securing and monitoring your agents, mcp and skills.dashboard@0.66.0
peta-coreThe Control Plane for MCP โ€” secure vault, managed runtime, audit trail, and policy-based approvals.v1.2.1
kibiRepo-local, per-git-branch, queryable knowledge base for LLM Agents.kibi-mcp@0.16.1

More in MCP Servers

PlanExeCreate a plan from a description in minutes
automagik-genieSelf-evolving AI agent orchestration framework with Model Context Protocol support
agentroveYour own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.