Open Source Radar
Kit for AI provides a TypeScript SDK, Claude Code plugin integration, and MCP setup for persistent memory, KB search, and document conversion via a REST/MCP API. Latest release is v1.0.0 (2026-07-14).
131stars
6forks
0issues
MITlicense
2026since
Star historydaily snapshots by VibeCrowd
Reviewgenerated from repository data · Jul 18, 2026
What it is
Kit for AI — Developer Hub provides tools for persistent memory for AI agents, knowledge-base RAG search, and document→Markdown/JSON conversion, accessible over MCP and REST with one API key. It includes an official typed REST client (@kitforai/sdk), a Claude Code plugin, and an MCP setup pipeline.
How it works
- Public resources include: persistent memory with remember/recall, knowledge-base search, and conversion features. The REST client is typed TypeScript/JavaScript and supports conversions and knowledge bases.
- The Claude Code plugin wires Kit for AI MCP tools and a usage skill into Claude with one command.
- An MCP agent can be configured to point to the hosted server via a provided JSON example, using an API key header.
Getting started
- Install the SDK: "npm install @kitforai/sdk"
- Example usage:
import { KitForAI } from "@kitforai/sdk"; const kit = new KitForAI({ apiKey: process.env.KITFORAI_API_KEY! }); // Convert a URL to structured JSON const res = await kit.convertUrl("https://example.com/report.pdf", { outputFormat: "json" }); - See additional examples:
- Claude plugin setup:
/plugin marketplace add kitforai/kitforai /plugin install kit-for-ai@kitforaiexport KITFORAI_API_KEY=kfa_... - MCP configuration example:
{ "kit-for-ai": { "type": "http", "url": "https://kitforai.com/api/mcp", "headers": { "x-api-key": "${KITFORAI_API_KEY}" } } }
Recent releases
- v1.0.0 Kit for AI v1.0.0 (2026-07-14): First public release of the Kit for AI developer hub.
- @kitforai/sdk — official typed REST client for the Kit for AI API
- Claude Code plugin — persistent agent memory, KB search, conversion
Traction
- Stars: 131
License
MIT
Links
- Docs: https://kitforai.com/docs
- API reference: https://kitforai.com/reference
- MCP endpoint: https://kitforai.com/api/mcp
- REST base: https://kitforai.com/api/v1
