.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

…/concierge-hq/concierge
home/mcp-servers/concierge-hq/concierge
concierge-hq avatar

concierge

byconcierge-hq· 1 MCP server

Installs

113

Stars

534

Forks

97

Category

AI Agents & MCP

View on GitHub

How to install concierge?

concierge-hq/concierge
$git clone https://github.com/concierge-hq/concierge

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3<!-- omit in toc -->
4 
5<picture>
6 <img width="900" alt="Concierge Banner" src="assets/concierge-banner.png" />
7</picture>
8 
9# Concierge AI 🚀
10 
11<strong>The fabric for reliable MCP servers and AI applications.</strong>
12 
13[![Docs](https://img.shields.io/badge/docs-getconcierge.app-blue)](https://docs.getconcierge.app)
14[![Discord](https://img.shields.io/badge/community-discord-5865F2?logo=discord&logoColor=white)](https://discord.gg/Y3ayRa33Pg)
15[![PyPI - Version](https://img.shields.io/pypi/v/concierge-sdk.svg)](https://pypi.org/project/concierge-sdk)
16[![Python](https://img.shields.io/badge/python-3.9+-8B5CF6?logo=python&logoColor=white)](https://pypi.org/project/concierge-sdk)
17 
18</div>
19 
20The [Model Context Protocol](https://modelcontextprotocol.io) (MCP) is a standardized way to connect AI agents to tools. Instead of exposing a flat list of every tool on every request, Concierge progressively discloses only what's relevant. Concierge guarantees deterministic results and reliable tool invocation.
21 
22## Getting Started
23 
24> [!NOTE]
25> Concierge requires Python 3.9+. We recommend installing with [uv](https://docs.astral.sh/uv/) for faster dependency resolution, but pip works just as well.
26 
27```bash
28pip install concierge-sdk
29```
30 
31**Scaffold a new project:**
32 
33```bash
34concierge init my-store # Generate a ready to run project
35cd my-store # Enter project
36python main.py # Start the MCP server
37```
38 
39**Or wrap an existing MCP server** two lines, nothing else changes:
40 
41```python
42# Before
43from mcp.server.fastmcp import FastMCP
44app = FastMCP("my-server")
45 
46# After: just wrap it
47from concierge import Concierge
48app = Concierge(FastMCP("my-server"))
49```
50 
51> [!TIP]
52> Concierge works at the MCP protocol level. It dynamically changes which tools are returned by `tools/list` based on the current workflow step. The agent and client don't need to know Concierge exists, they just see fewer, more relevant tools at each point.
53 
54<br />
55 
56```python
57from concierge import Concierge
58from mcp.server.fastmcp import FastMCP
59 
60app = Concierge(FastMCP("my-server"))
61 
62# Your @app.tool() decorators stay exactly the same.
63# You can additionally add app.stages and app.transitions.
64```
65 
66> [!NOTE]
67> The wrap and go gives you progressive tool disclosure immediately. Add `app.stages` and `app.transitions` when you want full workflow control, no code changes required.
68 
69<br />
70 
71## Usage
72 
73### Group tools into steps
74 
75Instead of exposing everything at once, group related tools together. Only the current step's tools are visible to the agent:
76 
77```python
78app.stages = {
79 "browse": ["search_products", "view_product"],
80 "cart": ["add_to_cart", "remove_from_cart", "view_cart"],
81 "checkout": ["apply_coupon", "complete_purchase"],
82}
83```
84 
85### Define transitions
86 
87Control which steps can follow which. The agent moves forward (or backward) only along paths you allow:
88 
89```python
90app.transitions = {
91 "browse": ["cart"], # Can only move to cart
92 "cart": ["browse", "checkout"], # Can go back or proceed
93 "checkout": [], # Terminal step
94}
95```
96 
97<details>
98<summary><b>Share state between steps</b></summary>
99<br>
100 
101Pass data between workflow steps without round-tripping through the LLM. State is session-scoped and works across distributed replicas:
102 
103```python
104# In the "browse" step - save a selection
105app.set_state("selected_product", {"id": "p1", "name": "Laptop"})
106 
107# In the "cart" step retrieve it directly
108product = app.get_state("selected_product")
109```
110</details>
111 
112<details>
113<summary><b>Scale with semantic search</b></summary>
114<br>
115 
116When you have hundreds of tools, enable semantic search to collapse your entire API behind two meta-tools:
117 
118```python
119from concierge import Concierge, Config, ProviderType
120 
121app = Concierge("large-api", config=Config(
122 provider_type=ProviderType.SEARCH,
123 max_results=5,
124))
125```
126 
127No matter how many tools you register, the agent only ever sees:
128 
129```
130search_tools(query: st

Preview

concierge-hq/conciergeconcierge-hq/concierge
Repoconcierge-hq/concierge
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJun 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

MCPagentic-aiagentic-web

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