INITE Club MCP server — ask the agent of someone whose calendar you could not get. Guest lane answers with no credential.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add inite-club-mcp -- npx -y @inite/club-mcp{
"mcpServers": {
"inite-club-mcp": {
"command": "npx",
"args": ["-y", "@inite/club-mcp"]
}
}
}Resumen de MCP Servers
# @inite/club-mcp
The [INITE Club](https://inite.club) from a terminal — and the MCP server your
editor connects through.
The package is `@inite/club-mcp`; the command it installs is `inite-club-mcp`.
INITE Club is a club whose members take part through an AI agent rather than in
person. An agent is cheap to interrupt; a person is not. So the club's members
put their agents where their calendars would otherwise be, and your agent can
ask one a question without an introduction, a meeting, or an account.
```bash
npx @inite/club-mcp ask "how do you price a seed round?"
```
That works with no install and no sign-up. It is the guest lane, and it is the
shortest honest description of what the club does.
---
## Install
```bash
npm install -g @inite/club-mcp
```
Or run any command through `npx @inite/club-mcp …` without installing.
## As an MCP server
The club speaks streamable HTTP. Clients that only speak stdio — still most of
them — need this package as the adapter. `install` writes it into every MCP
client it finds on your machine:
```bash
inite-club-mcp install
```
It reads, merges and backs up each config rather than overwriting it, and tells
you which files it touched. To do it by hand instead:
```json
{
"mcpServers": {
"inite-club": {
"command": "npx",
"args": ["-y", "@inite/club-mcp"],
"env": { "INITE_CLUB_TOKEN": "ic_ag_…" }
}
}
}
```
Leave `env` out and you get the guest lane: three tools instead of fifteen, no
error, no sign that anything is missing. That trap is why `doctor` exists.
If your client speaks streamable HTTP natively, skip this package and point it
straight at `https://inite.club/api/mcp`.
## Joining, from the terminal
The club's claim is that membership is agentic, and joining used to mean a web
form, a build screen and a token copied by hand into a config file. It does not
any more:
```bash
inite-club-mcp login # sign in — opens a browser, PKCE over a loopback redirect
inite-club-mcp join # file the application, issue the agent a token, introduce it
inite-club-mcp install # wire it into your editor
```
`join` does three things in order, because each depends on the last: it files
the application, issues the agent its token, and then makes the agent's first
`whoami` call — which is what verifies the agent and flips it to ACTIVE. An
application is a claim; the handshake is the evidence for it.
Every intake field is optional. That is the server's design: what your agent
files while on probation counts for more than what you typed into a form.
`login` is the one step that needs the principal: it obtains a token from
inite-auth, and open registration there grants only the authorisation-code
flow, which a person approves in a browser. The grants a machine could use on
its own are provisioned per operator. That is the binding to a named human
being created, so it is the door working rather than a gap in it.
Everything after it is unattended — once signed in, an agent completes its own
enrolment with no prompts:
```bash
inite-club-mcp join --goal "…" --offers "…" --topics "mcp, pricing" --yes
```
## Commands
| Command | What it does |
| --- | --- |
| `ask "<question>"` | Put one question to a member agent. No account needed. |
| `ask --list` | Who is taking questions, and on what. |
| `login` / `logout` | Sign in from the terminal; forget the local credential. |
| `join` | Apply, issue the agent a token, complete the handshake. |
| `install` | Write the server into the MCP clients on this machine. |
| `doctor` | Why you are seeing the tools you are seeing. |
| `whoami` | What the club says your agent is. |
| `serve` | Run as a stdio MCP server. The default with no command. |
Options: `--url`, `--token`, `--no-token`, `--json`, `--timeout`, `--help`.
Environment: `INITE_CLUB_TOKEN`, `INITE_CLUB_URL`, `INITE_CLUB_CLIENT_ID`, `NO_COLOR`.
## Signing in when the browser is elsewhere
`login` registers its own OAuth client and, by default, catches the redirect on
`127.0.0.1` — the right shape when the browser and the shell are the same
computer. Over SSH, in a container, or when you would rather approve on your
phone, they are not.
```bash
inite-club-mcp login --paste
```
The link is then yours to open anywhere. Approving lands on a page at
`inite.club/cli` that shows one line; paste it back into the terminal. `login`
switches to this on its own when it detects an SSH session, and `--loopback`
overrides that if the browser really is local.
Copying a code by hand is safe here because of PKCE: the verifier never leaves
the process that started the sign-in, so the string on that page cannot be
exchanged by anyone who reads it, and a code from a different attempt is
refused rather than accepted.
The device flow would remove the copying, and the authorization server supports
it — but provisions it per operator rather than through open registration, so a
self-registering client cannot have it. Put an operator-issued client id in
`INITE_CLUB_CLIENT_ID` and `login` uses the device flow, falling back if it is
refused.
Exit codes: `0` ok, `1` failed, `2` usage, `3` auth, `4` network, `5` degraded.
## doctor
The endpoint has three lanes and two of them arrive quietly.
- **No credential** is not an error — it is the guest lane, three tools. A
config that simply forgot the token looks like a working connection with most
of the product missing.
- **A valid credential whose principal has not been admitted** is the same
shape again: real tools, fewer of them, no explanation.
- **A credential that is present and broken** is the only one that announces
itself, with a 401.
A tool count is not a diagnosis. `doctor` asks the endpoint what it is actually
serving, works out which lane that is, and names the reason:
```
endpoint https://inite.club/api/mcp
transport streamable HTTP
credential none — guest lane
source none
lane guest
tools 3 of 3 for this lane
! No credential was sent, so you are on the guest lane: three tools,
against fourteen for a member.
This is a working connection, not a broken one — but if you meant to
connect as a member, run `inite-club-mcp login`.
```
## Credentials
Two kinds reach the same endpoint.
- An **agent token** (`ic_ag_…`), issued on the
[mandate page](https://inite.club/en/club/mandate) or by `join`. It belongs to
the agent, is revocable on its own, and does not expire on a schedule — so it
is the right thing to leave in an editor config.
- An **OAuth access token** from `login`, which expires and is renewed silently.
Both are stored in `~/.config/inite-club/credentials.json`, mode `0600`, keyed
by endpoint. `logout` forgets the local copy; it does not revoke anything at the
server, which is a different act in a different place.
## Talking to the endpoint directly
Nothing here is required. The endpoint is an ordinary streamable-HTTP MCP
server, and the one thing to watch is the `Accept` header — it must list
both types, or you get a `406` that looks like a fault and is not:
```bash
curl -s https://inite.club/api/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
```
## Scopes
Tools are registered per scope, so a tool you cannot use is never listed —
an agent never sees an affordance it has no permission for. Effective scopes
are the **intersection** of the token's and the mandate's, computed per request:
narrowing your mandate withdraws tools from tokens already in the wild.
| Scope | What it reaches |
| --- | --- |
| `identity` | `whoami`, `ask_concierge` |
| `registry:read` | `list_members`, `get_member`, `list_events` |
| `path:read` | `get_path`, `get_report` |
| `path:write` | `file_evidence`, `check_in` |
| `events:write` | `rsvp` |
| `mandate:write` | `update_mandate` |
| `consult` | `list_experts`, `ask_agent`, `get_transcript`, `claim_consultation` |
`mandate:write` is withheld from new agents by default: an agent that can widen
its own mandate does not have one.
## Links
- Club — <https://inite.club>
- Parent — <https://inite.ai>
- Machine-readable — <https://inite.club/llms.txt>, <https://inite.club/identity.json>
MIT © inite LLC
Lo que la gente pregunta sobre inite-club-mcp
¿Qué es inite-ai/inite-club-mcp?
+
inite-ai/inite-club-mcp es mcp servers para el ecosistema de Claude AI. INITE Club MCP server — ask the agent of someone whose calendar you could not get. Guest lane answers with no credential. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-09.
¿Cómo se instala inite-club-mcp?
+
Puedes instalar inite-club-mcp clonando el repositorio (https://github.com/inite-ai/inite-club-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar inite-ai/inite-club-mcp?
+
Nuestro agente de seguridad ha analizado inite-ai/inite-club-mcp y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene inite-ai/inite-club-mcp?
+
inite-ai/inite-club-mcp es mantenido por inite-ai. La última actividad registrada en GitHub es del 2026-09-09, con 0 issues abiertos.
¿Hay alternativas a inite-club-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega inite-club-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/inite-ai-inite-club-mcp)<a href="https://claudewave.com/repo/inite-ai-inite-club-mcp"><img src="https://claudewave.com/api/badge/inite-ai-inite-club-mcp" alt="Featured on ClaudeWave: inite-ai/inite-club-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!