Skip to main content
ClaudeWave
MCP ServersRegistry oficial0 estrellas0 forksTypeScriptApache-2.0Actualizado today
ClaudeWave Trust Score
77/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No description
Last scanned: 9/16/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/toolc-dev/toolc
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "toolc": {
      "command": "node",
      "args": ["/path/to/toolc/dist/index.js"]
    }
  }
}
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.
💡 Clone https://github.com/toolc-dev/toolc and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# toolc

**The optimizing compiler for agent tool surfaces.** Point it at your MCP
servers, or just a REST API's OpenAPI spec, or even a docs page, and get
back one endpoint that serves a smaller, smarter tool surface: cheaper for
every agent that connects, more accurate on every task, with every call
logged.

Connecting N MCP servers dumps every tool definition into the model's
context, degrades tool selection, and forces improvised multi-hop call
chains. toolc compiles the federation instead:

- **Rewrite**: LLM-optimized descriptions with sibling disambiguation
- **Consolidate**: families of near-duplicate tools (`search_x`/`find_x`/`get_x`)
  merge into single facade tools with deterministic routing
- **Selection**: the whole catalog compresses behind two meta-tools
  (`search_tools`/`call_tool`) when you want maximum context savings
- **Compaction**: oversized results are summarized at serve time, preserving
  identifiers and sourcing details
- **Compose**: REST APIs join the pool straight from an OpenAPI spec, or from
  a drafted spec synthesized from their documentation
- **Observe**: every call logged with arguments and results; recurring errors
  cluster into recommended fixes

## Benchmark

131 tools across 5 live servers, 30 tasks × 3 trials, judged answers
([full grid](docs/benchmark-2026-08-09.md) ·
[consolidation run](docs/benchmark-consolidate-2026-08-10.md)):

| condition | success | cost / completed task | tool-def context |
|---|---|---|---|
| raw (all 131 tools) | 96.7% | $0.2631 | ~24,360 tok |
| **compiled + consolidate** | 96.7% | **$0.0411 (6.4× cheaper)** | ~845 tok |
| **consolidate, no selection** | **100.0%** | $0.1335 | ~14,506 tok |

Consolidation dominates both ends of the frontier: the selection surface is
the cost lever, consolidation lifts accuracy everywhere. Every pass is a
config toggle; pick the tradeoff per deployment.

## Quick start

```sh
git clone https://github.com/toolc-dev/toolc && cd toolc
pnpm install && pnpm -r test

# describe your federation
cp toolc.config.example.jsonc toolc.config.jsonc

# introspect it
node packages/cli/bin/toolc.mjs -c toolc.config.jsonc inspect

# compile (set ANTHROPIC_API_KEY for the rewrite/consolidate passes)
node packages/cli/bin/toolc.mjs -c toolc.config.jsonc compile

# serve the compiled surface over stdio (add to Claude as an MCP server)
node packages/cli/bin/toolc.mjs -c toolc.config.jsonc serve --mode compiled
```

A downstream can be an MCP server or a bare REST API:

```jsonc
{
  "downstream": [
    { "id": "gh", "transport": { "type": "http", "url": "https://api.githubcopilot.com/mcp/" } },
    { "id": "nws", "transport": { "type": "openapi", "spec": "https://api.weather.gov/openapi.json" } }
  ]
}
```

See [SELF_HOSTING.md](SELF_HOSTING.md) for Docker deployment.

## Hosted

[toolc.dev](https://toolc.dev) runs this same engine as a managed service:
compiled HTTPS endpoints, a console with a playground and full-payload log
explorer, docs-to-spec drafting, and error-driven fix recommendations.

## Layout

- `packages/core`: IR (Capability Graph), frontends (MCP, OpenAPI, docs synthesis), passes, emit
- `packages/gateway`: runtime MCP server (mirror + compiled) with call logging and compaction
- `packages/cli`: the `toolc` command
- `packages/harness`: benchmark runner, grading, reports
- `packages/shared`: config schema, errors

## License

The engine (everything in this repository) is Apache-2.0, forever: anyone
can compile and serve their own tool surfaces locally with the exact same
compilation quality as the hosted product.

Lo que la gente pregunta sobre toolc

¿Qué es toolc-dev/toolc?

+

toolc-dev/toolc es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.

¿Cómo se instala toolc?

+

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

+

Nuestro agente de seguridad ha analizado toolc-dev/toolc y le ha asignado un Trust Score de 77/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene toolc-dev/toolc?

+

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

¿Hay alternativas a toolc?

+

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

Despliega toolc 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: toolc-dev/toolc
[![Featured on ClaudeWave](https://claudewave.com/api/badge/toolc-dev-toolc)](https://claudewave.com/repo/toolc-dev-toolc)
<a href="https://claudewave.com/repo/toolc-dev-toolc"><img src="https://claudewave.com/api/badge/toolc-dev-toolc" alt="Featured on ClaudeWave: toolc-dev/toolc" width="320" height="64" /></a>

Más MCP Servers

Alternativas a toolc