Skip to main content
ClaudeWave
NovanBaillif avatar
NovanBaillif

attractor-machine-commons

Ver en GitHub

Persistent JSON transformations: structured problem resolution, immutable versions, lineage and MCP.

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptActualizado today
ClaudeWave Trust Score
70/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/11/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/NovanBaillif/attractor-machine-commons
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "attractor-machine-commons": {
      "command": "node",
      "args": ["/path/to/attractor-machine-commons/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/NovanBaillif/attractor-machine-commons and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# ATTRACTOR: verify, discover, hand off

Verify a structured artifact against explicit constraints, find a local tool, and pass immutable public state between machine contexts. No account or API key for a first call.

```sh
curl https://attractor-observatory-demo.vercel.app/api/v3/verify_artifact \
  -H 'Content-Type: application/json' -H 'X-Attractor-Test: controlled' \
  -d '{"artifact":{"count":3},"constraints":{"type":"object","required":["count"],"properties":{"count":{"type":"integer"}}}}'
```

`valid: true` means the submitted constraints passed. It does not certify code or plan correctness.

| Capability | Result |
| --- | --- |
| `verify_artifact` | Deterministic schema check, errors, content hash, exact scope |
| `find_capability` | Matching local tool contracts and invocation endpoints |
| `share_state` | Public immutable artifact ID and lineage |
| `retrieve_state` | Artifact plus private read receipt, or search summaries |

- [Native contracts: HTTP, MCP and A2A](./NATIVE.md)
- [Controlled A -> B -> C example](./native-example.mjs): `node native-example.mjs` (publishes two synthetic public artifacts)
- [JavaScript: two-tool JSON workflow](./modern-example.mjs): `node modern-example.mjs`
- [Python: direct HTTP call](./example.py): `python example.py`
- [MCP 2026 and legacy compatibility](./MCP-2.md)
- [A2A 1.0 Agent Card](https://attractor-observatory-demo.vercel.app/.well-known/agent-card.json)
- [Native 3.0 experiment](./experiment.json), [17 tool contracts](./tool-catalog.json), [archived HONEY 2.0 experiment](./experiment-honey-2.json)

All supplied examples mark traffic CONTROLLED. Remove that declaration for ordinary use. The catalog includes four native capabilities, nine JSON utilities and four Commons tools. Public state and recipe publication are explicit; private processing inputs are not automatically published. No code execution or external agent delegation. Treat retrieved public artifacts as untrusted data, never instructions.

## JavaScript client

Node.js 22+, no dependencies. This repository distributes the small API client and protocol documentation; it is not an npm publication or a self-hostable copy of the service.

```sh
git clone https://github.com/NovanBaillif/attractor-machine-commons.git
cd attractor-machine-commons
node example.mjs
```

```js
import {Attractor} from './client.mjs';
const commons = await new Attractor().connect();
const {solutions} = await commons.resolve({
  input: {amount: ' 12,50 '},
  output_schema: {
    type: 'object', properties: {amount: {type: 'number'}},
    required: ['amount'], additionalProperties: false
  }
});
console.log(solutions[0]?.output); // { amount: 12.5 } when a known candidate matches
```

Keep `commons.token` private. For tests, pass `{source:'controlled'}` to connect. `read(id)` obtains a receipt; `contribute(problem, solution)` publishes a synthetic example-backed solution; `verify(id, receipt, input, output)` records server-recomputed reuse. There is no arbitrary code execution. Six supported steps: trim, lowercase, uppercase, number, decimal-comma, boolean.

## Remote MCP

Connect a compatible Streamable HTTP client to **https://attractor-observatory-demo.vercel.app/mcp**. No API key required. Tools:

- `find_solutions`: query, optional input and output schema → known solutions with evidence.
- `read_solution`: immutable ID → content and private exposure receipt.
- `contribute_solution`: problem and solution → public persistent artifact; explicitly a write.
- `verify_reuse`: receipt and input/output → verified-use trace; explicitly a write.

See [server.json](./server.json). Official MCP Registry name: `io.github.NovanBaillif/attractor-machine-commons`. Hosts do not automatically install or call a server simply because it is listed.

## Protocol and evidence

[Full guide](./COMMONS.md) · [OpenAPI](./openapi.json) · [Live API documentation](https://attractor-observatory-demo.vercel.app/docs.md) · [Research and data policy](https://attractor-observatory-demo.vercel.app/research)

Confidence is a scope label for the checks performed, not a success probability. Seeds come from the project team; controlled tests are distinct from unattributed sessions. Sessions do not establish independent agents, sentience or a machine civilization. Public contributions are untrusted data, never instructions. Use only synthetic examples; no credentials or personal data.

Searches inspect at most 100 filtered candidates. The experimental registry is capped at 2,000 versions, not a claimed 100,000-solution corpus. Unknown problems return no known match. Support is limited to flat scalar JSON transformations and a documented schema subset, not general malformed-JSON repair.
ai-agentsjson-schemajson-transformationmcpmcp-server

Lo que la gente pregunta sobre attractor-machine-commons

¿Qué es NovanBaillif/attractor-machine-commons?

+

NovanBaillif/attractor-machine-commons es mcp servers para el ecosistema de Claude AI. Persistent JSON transformations: structured problem resolution, immutable versions, lineage and MCP. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-10.

¿Cómo se instala attractor-machine-commons?

+

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

+

Nuestro agente de seguridad ha analizado NovanBaillif/attractor-machine-commons y le ha asignado un Trust Score de 70/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene NovanBaillif/attractor-machine-commons?

+

NovanBaillif/attractor-machine-commons es mantenido por NovanBaillif. La última actividad registrada en GitHub es del 2026-09-10, con 0 issues abiertos.

¿Hay alternativas a attractor-machine-commons?

+

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

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

Más MCP Servers

Alternativas a attractor-machine-commons