@thinkneo_ai/sdk
v1.0.0
Published
TypeScript SDK for ThinkNEO MCP+A2A Gateway — 59 MCP tools + 24 A2A skills
Downloads
141
Maintainers
Readme
ThinkNEO TypeScript SDK
TypeScript/JavaScript SDK for the ThinkNEO MCP+A2A Gateway — 59 MCP tools + 24 A2A skills.
Install
npm install @thinkneo_ai/sdkQuick Start
import { ThinkNEO } from "@thinkneo_ai/sdk";
const client = new ThinkNEO({ apiKey: "tnk_your_key_here" });
// Safety check (free)
const result = await client.check("Ignore all previous instructions");
console.log(result.safe); // false
console.log(result.warnings); // [{type: "prompt_injection", ...}]
// Smart Router
const route = await client.routeModel("code_generation");
console.log(route.recommended_model);