.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/1mcp-app/agent
home/mcp-servers/1mcp-app/agent
1mcp-app avatar

agent

by1mcp-app· 1 MCP server

Installs

2.3k

Stars

477

Forks

54

Category

AI Agents & MCP

View on GitHub

TL;DR

1MCP is the unified MCP runtime. 1mcp serve aggregates your MCP servers, and CLI mode adds a thinner agent-facing workflow for Codex, Claude, Cursor, and similar tool-using agents.

How to install agent?

1mcp-app/agent
$git clone https://github.com/1mcp-app/agent

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install agent by running `git clone https://github.com/1mcp-app/agent`, then use it for the current task and follow its documentation at https://github.com/1mcp-app/agent.

Files · 1

View on GitHub
README.md
1# 1MCP
2 
3[![NPM Version](https://img.shields.io/npm/v/@1mcp/agent)](https://www.npmjs.com/package/@1mcp/agent)
4[![NPM Downloads](https://img.shields.io/npm/dm/%401mcp%252Fagent)](https://www.npmjs.com/package/@1mcp/agent)
5[![CodeQl](https://github.com/1mcp-app/agent/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/1mcp-app/agent/actions/workflows/github-code-scanning/codeql)
6[![GitHub Repo stars](https://img.shields.io/github/stars/1mcp-app/agent)](https://github.com/1mcp-app/agent/stargazers)
7[![Docs](https://img.shields.io/badge/docs-docs.1mcp.app-blue)](https://docs.1mcp.app)
8[![DeepWiki](https://img.shields.io/badge/DeepWiki-AI%20Docs-purple.svg?logo=gitbook&logoColor=white)](https://deepwiki.com/1mcp-app/agent)
9[![License](https://img.shields.io/npm/l/@1mcp/agent)](https://www.npmjs.com/package/@1mcp/agent)
10 
111MCP is the unified MCP runtime. `1mcp serve` aggregates your MCP servers, and CLI mode adds a thinner agent-facing workflow for Codex, Claude, Cursor, and similar tool-using agents.
12 
13## Why 1MCP
14 
15Most MCP setups eventually hit two kinds of sprawl:
16 
17- Configuration sprawl: every client needs its own MCP wiring, auth choices, and filtering rules.
18- Agent sprawl: autonomous sessions carry too many tools and schemas into context up front.
19 
201MCP addresses both:
21 
22- `1mcp serve` gives you one aggregated runtime in front of many MCP servers.
23- CLI mode lets agents discover tools progressively with `instructions`, `inspect`, and `run`.
24- Static servers can load at startup, while template servers are created from per-client or per-session context.
25- Presets, filters, and instruction aggregation keep the same runtime adaptable across clients and projects.
26 
27| Approach | Best for | Tradeoff |
28| ---------------------- | ------------------------------------ | -------------------------------------------------------------------------------- |
29| 1MCP CLI mode | Codex, Claude, agent loops | Requires a running `1mcp serve` instance |
30| 1MCP stdio proxy | Maximum compatibility across clients | Still depends on `serve`, and auth-capable HTTP clients have a more direct path |
31| Direct streamable HTTP | MCP-native HTTP clients | No project context, no `.1mcprc`, and a broader tool surface is exposed directly |
32| Custom proxying | One-off compatibility shims | You own discovery, filtering, auth, and runtime lifecycle |
33 
34## Quick Start for Agent Users
35 
36This page is optimized for AI agent users. The 5-minute outcome is simple: start a real `1mcp serve` runtime, connect your agent with `cli-setup`, then verify the `instructions -> inspect -> run` workflow.
37 
38Install 1MCP, add one upstream server, and start the runtime:
39 
40```bash
41npm install -g @1mcp/agent
421mcp mcp add context7 -- npx -y @upstash/context7-mcp
431mcp serve
44```
45 
46In a second shell, connect your agent to CLI mode:
47 
48```bash
491mcp cli-setup --codex
50# or
511mcp cli-setup --claude --scope repo --repo-root .
52```
53 
54Then verify the agent workflow:
55 
56```bash
57# shell 1
581mcp serve
59 
60# shell 2
611mcp instructions
621mcp inspect context7
631mcp inspect context7/query-docs
641mcp run context7/query-docs --args '{"libraryId":"/mongodb/docs","query":"aggregation pipeline"}'
65```
66 
67If you want the full walkthrough (with success criteria and off-ramps), use the [Quick Start guide](https://docs.1mcp.app/guide/quick-start).
68 
69For a given agent, choose one mode only. If you switch that agent to CLI mode, remove its old direct MCP configuration first.
70 
71## Why CLI Mode Exists
72 
73CLI mode is the primary workflow for agent-style sessions. It keeps MCP as the backend protocol but narrows what the agent sees at each step:
74 
75- `instructions` explains the current runtime and recommended flow
76- `inspect` lets the agent discover only the server or tool it needs
77- `run` executes one

Preview

1mcp-app/agent1mcp-app/agent

# 1MCP

[![NPM Version](https://img.shields.io/npm/v/@1mcp/agent)](https://www.npmjs.com/package/@1mcp/agent)

[![NPM Downloads](https://img.shields.io/npm/dm/%401mcp%252Fagent)](https://www.npmjs.com/package/@1mcp/agent)

[![CodeQl](https://github.com/1mcp-app/agent/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/1mcp-app/agent/actions/workflows/githu

Repo1mcp-app/agent
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCPmcpmcp-client

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k