Skip to main content
ClaudeWave
inite-ai avatar
inite-ai

inite-diagnostic

View on GitHub

MCP server for the INITE process diagnostic — what a business process costs today, where it breaks, and what to automate next, from inside your agent.

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/9/2026
Install in Claude Code / Claude Desktop
Method: NPX · @inite/diagnostic
Claude Code CLI
claude mcp add inite-diagnostic -- npx -y @inite/diagnostic
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "inite-diagnostic": {
      "command": "npx",
      "args": ["-y", "@inite/diagnostic"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# INITE Diagnostic — a process audit your agent can run

Point an assistant at a business process and get back what it costs today,
where it breaks first, and what to automate next.

```
> Our WhatsApp enquiries take until morning to answer. Is that worth fixing?

  start_audit(language: "en")        → audit_token: 9f2c…, first question
  answer_audit(field: "channels", value: "whatsapp, instagram")
  answer_audit(field: "dailyInquiries", value: "50-100")
  …
  answer_audit(finish: true)         → findings
```

It is the same audit that runs at
[inite.solutions/en/audit](https://inite.solutions/en/audit).

## Two depths

**Free — eight questions about one process.** Pick the thing your people still
do by hand. The interview maps it and says what it costs now and what changes
if it runs itself. No account needed in the browser; from an agent, the
interview and the arithmetic need none either — see
[Works before you sign in](#works-before-you-sign-in) — and the reading itself
needs one.

**Premium — forty-three slots across the whole business**, grouped into
strategy, marketing, operations, finance and technology. The interview has a
budget of thirty-five questions against those forty-three slots, so it must
leave some unasked, and choosing which is the part worth having a model for. It
routes by the share of each area still open, not by the count, so one expert
cannot conduct two thirds of the conversation.

The first eight slots of a premium run are the free eight, unchanged. An audit
that upgrades mid-way is not asked them twice.

## Works before you sign in

Two of the tools run entirely on your machine. No account, no allowance, no
call home.

`diagnostic_questions` hands over the interview itself — the eight things a
diagnostic has to establish, in the words they are asked in — and your
assistant conducts it, in the person's own language, with options that look
like their industry. `read_answers` then does the arithmetic on what came back.

```
> Eighty enquiries a day between the two of us, mostly WhatsApp, kept in a spreadsheet.

  read_answers(answers: {...})

  From what you have been told:
    80 enquiries a day across 2 people — 40 each.
    12 of them become leads — 15% of what arrives.
    3 channels enquiries arrive on. The record of them: a spreadsheet.

  That is the arithmetic. What it cannot do is say what to automate first.
```

The split falls where the competences do. A model conducts an interview far
better than it divides eighty by two and remembers what the range said, so the
caller asks and this counts — and every assumption it had to make is printed
beside the result ("read 50-100 as 75").

Signing in adds the audit itself: the next question chosen from everything
already said, the findings written against them, a run saved under your account
that you can come back to, and the forty-three question depth.

## Install

**Claude Desktop, Cursor, or any client that launches a stdio server:**

```json
{
  "mcpServers": {
    "inite-diagnostic": {
      "command": "npx",
      "args": ["-y", "@inite/diagnostic"]
    }
  }
}
```

Then, when you want the audit rather than the arithmetic:

```sh
npx @inite/diagnostic login
```

That opens a browser, you approve, and the token is stored at
`~/.config/inite/mcp-diagnostic.json` with owner-only permissions.
Authorization code with PKCE over a loopback redirect, the flow RFC 8252
prescribes for a native app. Nothing is written to the repository and no secret
ships in the package.

**Its own file, not the one `@inite/visibility` writes.** Both tokens are
issued by the same authorization server and belong to the same person, and
neither works in the other's place: RFC 8707 binds each one to the `resource`
it was asked for. Sharing a file would mean the second `login` silently
replaced the first one's token with something that 401s. For the same reason
this package reads `INITE_DIAGNOSTIC_TOKEN` before `INITE_TOKEN`.

## Tools

| tool | what it does | account |
|---|---|---|
| `diagnostic_questions` | The eight fields, in the words they are asked in, for you to interview from | no |
| `read_answers` | The arithmetic on what you collected, with every assumption stated | no |
| `start_audit` | Begins the interview, returns the first question and an `audit_token` | yes |
| `answer_audit` | Records one answer against the field the question named, returns the next question — or the findings when the interview is over | yes |
| `get_audit` | Depth, what was answered, what was declined, what is still open, and the findings if they exist | yes |
| `upgrade_audit` | Spends a paid run if the account has one; otherwise returns a checkout link | yes |

`upgrade_audit` deliberately stops short of buying. With nothing paid for on
the account it hands back a URL for a person to open. An agent is not given a
way to spend somebody's money unattended.

### Answers the model does not have

`"__skip__"` is a valid answer and a better one than a guess. A guessed answer
produces a confident wrong finding, which is worse than a gap the audit can
name — and the findings say what they could not tell rather than inventing it.

### Fields are a closed list

Every question names the field it fills, and that name comes from a fixed list.
The model chooses which slot to raise next, how to word it and what to offer as
answers; it does not choose what the answers are called. This is enforced by
the schema rather than checked afterwards — the field is an enum built per call
from what is still missing, so a question about anything else cannot be
expressed.

That constraint exists because the version without it failed in a specific way:
the panel stayed empty while the visitor answered, and the lead reached the CRM
as a wall of JSON under "Industry: N/A".

The full list, generated from the server's own definitions, is in
[SLOTS.md](SLOTS.md).

## Connect without the package

A client that speaks the MCP authorization flow can talk to the remote server
directly. There are no local tools that way — the two above live in the
package — and every call needs a token.

```json
{
  "mcpServers": {
    "inite-diagnostic": {
      "type": "http",
      "url": "https://inite.solutions/api/mcp"
    }
  }
}
```

## Authentication

Every call to the *remote* server needs a bearer token, and the only thing
available without one is how to get a token. The two local tools need nothing.

An unauthenticated request returns `401` with a `WWW-Authenticate` header
pointing at
[`/.well-known/oauth-protected-resource`](https://inite.solutions/.well-known/oauth-protected-resource),
which names `auth.inite.ai` as the authorization server. A client that speaks
the MCP authorization flow walks that chain on its own: it registers, a human
approves in a browser, and every run after that belongs to somebody.

An agent is the same person arriving through a different door, so the quota,
the entitlement and the audit rows are the account's own — not a second class
of user with a separate allowance.

## Registry

Published as `solutions.inite/inite-diagnostic`. The namespace is proved by an
ed25519 key served at
[`/.well-known/mcp-registry-auth`](https://inite.solutions/.well-known/mcp-registry-auth).

The manifest that publishes it lives beside the server itself rather than here,
so there is one copy of it and no way for the two to disagree. This repository
is the readable half: what the server is, what it asks, and what it will not do.

## The rest of the family

| server | what it is for |
|---|---|
| [`ai.inite/inite-visibility`](https://github.com/inite-ai/inite-visibility) | Whether the answer engines can see a website |
| `club.inite/inite-club` | Membership, events, the shared workspace |
| `studio.inite/ideaudit-tools` | The scoring behind an audit allowed to say no |
| [`io.github.inite-ai/inite-brain-service`](https://github.com/inite-ai/inite-brain-service) | Bitemporal memory for agents |

## License

MIT. See [LICENSE](LICENSE).
automationbusiness-diagnosticmcpmodelcontextprotocolprocess-audit

What people ask about inite-diagnostic

What is inite-ai/inite-diagnostic?

+

inite-ai/inite-diagnostic is mcp servers for the Claude AI ecosystem. MCP server for the INITE process diagnostic — what a business process costs today, where it breaks, and what to automate next, from inside your agent. It has 0 GitHub stars and its last recorded update is dated 2026-09-08.

How do I install inite-diagnostic?

+

You can install inite-diagnostic by cloning the repository (https://github.com/inite-ai/inite-diagnostic) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is inite-ai/inite-diagnostic safe to use?

+

Our security agent has analyzed inite-ai/inite-diagnostic and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains inite-ai/inite-diagnostic?

+

inite-ai/inite-diagnostic is maintained by inite-ai. The last recorded GitHub activity is dated 2026-09-08, with 0 open issues.

Are there alternatives to inite-diagnostic?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy inite-diagnostic to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: inite-ai/inite-diagnostic
[![Featured on ClaudeWave](https://claudewave.com/api/badge/inite-ai-inite-diagnostic)](https://claudewave.com/repo/inite-ai-inite-diagnostic)
<a href="https://claudewave.com/repo/inite-ai-inite-diagnostic"><img src="https://claudewave.com/api/badge/inite-ai-inite-diagnostic" alt="Featured on ClaudeWave: inite-ai/inite-diagnostic" width="320" height="64" /></a>

More MCP Servers

inite-diagnostic alternatives