Skip to main content
ClaudeWave

Small, stateless MCP servers served from toolstop.dev

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/17/2026
Install in Claude Code / Claude Desktop
Method: NPX · @toolstop/check-digits
Claude Code CLI
claude mcp add toolstop -- npx -y @toolstop/check-digits
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "toolstop": {
      "command": "npx",
      "args": ["-y", "@toolstop/check-digits"]
    }
  }
}
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.
Casos de uso

Resumen de MCP Servers

# toolstop

Small, stateless MCP servers. Each one does a single narrow job exactly, so an
assistant can call it instead of guessing.

Every server runs on Cloudflare Workers at `<name>.toolstop.dev`, holds no
state, and can also run locally over stdio.

> **Not maintained since September 2026.** The servers stay up, but the data
> embedded in export-control is frozen at its 2026-08-27 edition and every
> answer names the edition it came from. Treat a licensing verdict as a
> starting point, not a ruling.

## Servers

| Server | Does | Endpoint |
|---|---|---|
| [check-digits](packages/mcp-check-digits) | Validates check digits for IBAN, LEI, ISBN, GTIN/UPC/EAN, VIN, NPI, ISIN, ABA routing numbers and payment cards | `https://check-digits.toolstop.dev` |

## Connecting

Remote, over streamable HTTP. No install, no account:

```json
{
  "mcpServers": {
    "check-digits": {
      "type": "url",
      "url": "https://check-digits.toolstop.dev"
    }
  }
}
```

Local, over stdio:

```bash
npx @toolstop/check-digits
```

## Design

**Stateless.** No database, no vector index, no metered upstream API. A request
is answered from its arguments alone. Servers scale to zero and an idle one
costs nothing.

**Zero runtime dependencies.** No MCP SDK, no schema library. MCP over
streamable HTTP is request/response, which makes hand-rolled dispatch small
enough to be worth it: faster cold starts, and no supply chain.

**Telemetry records shape and outcome, never argument values.** A check-digit
server that logged its input would be storing real IBANs and card numbers. The
transport emits one row per request describing *what kind* of call happened and
whether it succeeded. `packages/_shared/transport.test.mjs` asserts that no raw
argument value can reach it.

The row also carries a session id, and it is derived from the **network** the
request came from, truncated to a /24 or /48 before hashing, never the full
address. Hashing the whole IP would not have anonymised it: the IPv4 space is 32
bits and the other inputs are public, so the id was walkable back to one address
until this was fixed on 2026-08-10. Each server's README states the complete
recorded row rather than only what is left out.

**Every tool declares `readOnlyHint`, a complete `inputSchema` and an
`outputSchema`**, so a client can tell what a call will do before making it and
what shape comes back. The transport refuses to start a server whose tools do
not state their annotations, rather than defaulting them to something reassuring.

## Repo layout

```
packages/_shared/     shared transport, dispatch and telemetry
packages/mcp-<name>/  one server
scripts/discover.mjs  derives the CI matrix from the filesystem
scripts/smoke.mjs     protocol check against a live endpoint
```

See [CLAUDE.md](CLAUDE.md) for the operating manual.

## Development

```bash
npm install
npm test                                # every server plus the shared transport
node scripts/smoke.mjs mcp-check-digits # protocol check against the live endpoint
```

## License

MIT
cloudflare-workersmcpmcp-servermodel-context-protocol

Lo que la gente pregunta sobre toolstop

¿Qué es toolstop/toolstop?

+

toolstop/toolstop es mcp servers para el ecosistema de Claude AI. Small, stateless MCP servers served from toolstop.dev Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-16.

¿Cómo se instala toolstop?

+

Puedes instalar toolstop clonando el repositorio (https://github.com/toolstop/toolstop) 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 toolstop/toolstop?

+

Nuestro agente de seguridad ha analizado toolstop/toolstop y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene toolstop/toolstop?

+

toolstop/toolstop es mantenido por toolstop. La última actividad registrada en GitHub es del 2026-09-16, con 0 issues abiertos.

¿Hay alternativas a toolstop?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega toolstop 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.

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

Más MCP Servers

Alternativas a toolstop