Negirau

For developers

Everything you need to work with Negirau from code: the public API, client libraries, an MCP server, and an Agent Skill — all shipped from the same contract.

Public API

A read-only, anonymous, CORS-open JSON API. No key needed — just call it.

curl "https://api.negirau.com/v1/subjects?q=library&limit=5"

View the OpenAPI spec

Client libraries

Official TypeScript and Python clients with retries and typed errors, contract-tested against the spec.

TypeScript

npm install negirau
import { Negirau } from "negirau";

const client = new Negirau();
const page = await client.subjects.list({ q: "library", limit: 5 });

npm: negirau

Python

pip install negirau
from negirau import Negirau

client = Negirau()
page = client.subjects.list(q="library", limit=5)

PyPI: negirau

MCP server

Exposes the read API as tools for MCP-capable AI hosts.

npx negirau-mcp

npm: negirau-mcp

Agent Skill

One command adds a skill that teaches AI agents the philosophy and the API alike.

npx skills add sincekmori/negirau

llms.txt

This site supports llms.txt. The documents provided:

View the source on GitHub