Skip to main content
ClaudeWave

Design in SkeletIQ, build with your coding agent. MCP server for the SkeletIQ architecture platform.

MCP ServersOfficial Registry1 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/11/2026
Install in Claude Code / Claude Desktop
Method: NPX · @skeletiq/mcp
Claude Code CLI
claude mcp add skeletiq-mcp -- npx -y @skeletiq/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "skeletiq-mcp": {
      "command": "npx",
      "args": ["-y", "@skeletiq/mcp"],
      "env": {
        "SKELETIQ_API_KEY": "<skeletiq_api_key>"
      }
    }
  }
}
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.
Detected environment variables
SKELETIQ_API_KEY
Use cases

MCP Servers overview

# @skeletiq/mcp

[![npm](https://img.shields.io/npm/v/@skeletiq/mcp)](https://www.npmjs.com/package/@skeletiq/mcp)
[![licence](https://img.shields.io/npm/l/@skeletiq/mcp)](./LICENSE)
[![node](https://img.shields.io/node/v/@skeletiq/mcp)](https://nodejs.org)
[![CI](https://github.com/Sabhahith-Works/skeletiq-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/Sabhahith-Works/skeletiq-mcp/actions/workflows/ci.yml)

Design in [SkeletIQ](https://skeletiq.com), build with your coding agent.

SkeletIQ turns a prompt into a critiqued system architecture — components, data stores,
connections, decisions, open questions — that you refine on a canvas and then **release**. This MCP
server hands that release to any MCP-capable coding agent: it orients from a brief written into
your repository's `AGENTS.md`, builds in a deterministic order, and reports back what it built.

## Install

Nothing to install — the server runs via `npx`.

You need a **personal API token**: in SkeletIQ, go to **Settings → Agent access**, create one, and
copy it (it is shown once).

### Claude Code

```bash
claude mcp add skeletiq \
  --env SKELETIQ_API_KEY=skq_your_token_here \
  -- npx -y @skeletiq/mcp
```

### opencode

```json
{
  "mcp": {
    "skeletiq": {
      "type": "local",
      "command": ["npx", "-y", "@skeletiq/mcp"],
      "environment": { "SKELETIQ_API_KEY": "{env:SKELETIQ_API_KEY}" },
      "timeout": 600000
    }
  }
}
```

The `timeout` matters. A generation runs for around 217 seconds typically and up to 450 at the
limit; opencode's default is far below that, and it will kill a perfectly healthy run.

### Any other host

Run `npx -y @skeletiq/mcp` over stdio with `SKELETIQ_API_KEY` in the environment.

## Configuration

| Variable | Required | Default | Notes |
|---|---|---|---|
| `SKELETIQ_API_KEY` | yes | — | A personal API token, starting `skq_`. Not a browser session token. |
| `SKELETIQ_API_URL` | no | `https://api.skeletiq.com` | For self-hosted installs. A trailing `/api/v1` is accepted and trimmed. |

## Scopes

A token grants only what you tick. The server's tools need:

| Scope | What it unlocks | Tools |
|---|---|---|
| `read` | Projects, designs, briefs, build order, readiness, gaps, jobs | `list_projects`, `get_design`, `get_generation_status` |
| `generate` | Running generations — **that spends credits** — and payload critique, which is free | `generate_architecture`, `critique_architecture` |
| `report` | Recording what got built. **Needs `read` as well** | `check_drift` |

`read` alone is a good starting point: the agent can orient and build, but cannot spend anything.

Two things the table above cannot say in a cell:

- **`report` on its own does nothing.** `check_drift` looks the project and the version up before it
  can report against them, and those lookups are `read`. A `report`-only token is refused.
- **`generate` without `read` still generates**, but the answer is thinner: the tool reads back the
  design it just created to describe it, and reports that failure as a thinner answer rather than a
  failed generation — telling an agent the generation failed would invite it to pay for the whole
  thing again.

Everything else is out of reach by construction — a token cannot mint another token, read or
change your provider keys, see billing, or delete your account, whatever scopes it carries.

## Tools

| Tool | What it does |
|---|---|
| `list_projects` | Find a project by name. Returns the candidates rather than guessing between them. |
| `get_design` | Read a design, in one of six modes: `overview`, `component`, `brief`, `readiness`, `build_order`, `gaps`. |
| `generate_architecture` | Design a system from a prompt. Spends credits and takes minutes. |
| `get_generation_status` | Poll a generation started with `wait: false`. |
| `critique_architecture` | Check a design against SkeletIQ's rules. Deterministic, free, stores nothing. Tell it the `domain` and the `exposure`. |
| `check_drift` | Report what you built; hear what is missing, half done, or not in the design. |

## How a session goes

1. `list_projects` → resolve the project a person named.
2. `get_design(mode: "brief")` → write the fenced block into `AGENTS.md`.
3. `get_design(mode: "readiness")` → see what is still undecided, and ask.
4. `get_design(mode: "build_order")` → build in that order.
5. `get_design(mode: "component", component_id: …)` → read each piece as you reach it.
6. `check_drift(covers: [...])` → report progress.

## Four things to know

**The brief is a managed block.** It goes inside a `skeletiq:brief` HTML-comment fence in your
`AGENTS.md`. A refresh replaces the whole block. Never append a second, and never edit inside one:
your edits will disappear on the next refresh, silently.

**A draft is not a release.** An unreleased version changes on every canvas save, with nothing to
tell your repository it moved. The tools label drafts, and tell you when a newer release exists.

**Component ids belong to one version.** A regeneration mints new ones. When `check_drift` returns
unknown ids with suggestions, they are suggestions — put them to a person rather than assuming the
mapping.

**`critique_architecture`'s optional inputs are not neutral.** Omitting one does not skip a
question; it answers it. With no `domain` and `secondary_domains`, no compliance framework applies,
so no compliance finding is possible and the score comes back higher than the SkeletIQ app shows
for the same design — by up to 15 points. With no `exposure`, the design is assessed as
internet-facing, which is how an air-gapped system gets told to add a CDN and a WAF. The response
says what was actually used — `frameworks_checked` and `exposure_assessed` — and the text output
warns when a default was applied. Read those before reporting a score to a person.

## Which model runs a generation

Whichever one the account holder chose under **Settings → Agent access**. The tools take no runtime
argument, deliberately: the model asking for a design does not get to choose what it costs you.

## Development

This repository is the source of the published `@skeletiq/mcp` package. The connector is developed
in SkeletIQ's monorepo, alongside the API it talks to, and mirrored here — so the history you see is
the package's real history, not a squashed snapshot. A pull request opened here cannot be merged,
because the next sync would overwrite it; [CONTRIBUTING.md](./CONTRIBUTING.md) explains what to do
instead.

Node 20 or newer.

```bash
npm install
npm test          # vitest — hermetic: no network, no services, nothing to seed
npm run build     # tsup, to dist/index.js
npm run typecheck
npm run lint
```

The tests mock the SkeletIQ API rather than calling it, so a clean clone runs them without a token
and without an account.

**If `npm install` fails with `Cannot read properties of null (reading 'edgesOut')`,** you are on npm
10.9.x — the version Node 22 ships — which cannot resolve this tree; `vitest@4` alone triggers it.
`npm install -g npm@11` fixes it. This affects cloning and building only: installing the published
package with `npx` works on that npm.

## Licence

MIT — see [LICENSE](./LICENSE). Source:
[Sabhahith-Works/skeletiq-mcp](https://github.com/Sabhahith-Works/skeletiq-mcp) — issues and questions
go [there](https://github.com/Sabhahith-Works/skeletiq-mcp/issues).

The SkeletIQ platform is AGPL-3.0-or-later; this connector is MIT so it can be embedded, vendored
and forked freely.

"SkeletIQ" is a mark of Sabhahith Works Private Limited — see [NOTICE](./NOTICE). Security reports go
to security@skeletiq.com, not to the issue tracker: [SECURITY.md](./SECURITY.md).
ai-agentsarchitecturemcpmodel-context-protocolsystem-designtypescript

What people ask about skeletiq-mcp

What is Sabhahith-Works/skeletiq-mcp?

+

Sabhahith-Works/skeletiq-mcp is mcp servers for the Claude AI ecosystem. Design in SkeletIQ, build with your coding agent. MCP server for the SkeletIQ architecture platform. It has 1 GitHub stars and its last recorded update is dated 2026-09-10.

How do I install skeletiq-mcp?

+

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

Is Sabhahith-Works/skeletiq-mcp safe to use?

+

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

Who maintains Sabhahith-Works/skeletiq-mcp?

+

Sabhahith-Works/skeletiq-mcp is maintained by Sabhahith-Works. The last recorded GitHub activity is dated 2026-09-10, with 0 open issues.

Are there alternatives to skeletiq-mcp?

+

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

Deploy skeletiq-mcp 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: Sabhahith-Works/skeletiq-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/sabhahith-works-skeletiq-mcp)](https://claudewave.com/repo/sabhahith-works-skeletiq-mcp)
<a href="https://claudewave.com/repo/sabhahith-works-skeletiq-mcp"><img src="https://claudewave.com/api/badge/sabhahith-works-skeletiq-mcp" alt="Featured on ClaudeWave: Sabhahith-Works/skeletiq-mcp" width="320" height="64" /></a>

More MCP Servers

skeletiq-mcp alternatives