🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@kynth/ai-tools

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kynth/ai-tools

Kynth Core as ready-made agent tools — a Vercel AI SDK tool() map plus LangChain DynamicStructuredTools, delegating to the official @kynth/api client. Parse documents, fight chargebacks, analyze contracts, run cited research.

latest
Source
npmnpm
Version
0.5.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

@kynth/ai-tools

Kynth Core as ready-made agent tools — parse documents, fight chargebacks, analyze contracts, match POs, screen leads, and run cited research from inside your agent loop. One import for the Vercel AI SDK, one for LangChain.

Every tool is a thin wrapper over the official @kynth/api client: auth, timeouts, and typed errors behave exactly like a direct SDK call, and failed calls never burn credits. Each tool's description carries its exact price, so cost-aware agents can budget calls. The full machine-readable rate card lives at api.kynth.studio/pricing.json.

Install

npm i @kynth/ai-tools @kynth/api
# Vercel AI SDK apps also need:  npm i ai
# LangChain apps also need:      npm i @langchain/core

Get a key (and 500 free credits every month, no card) at api.kynth.studio.

Vercel AI SDK

import { generateText } from "ai";
import { KynthCore } from "@kynth/api";
import { kynthTools } from "@kynth/ai-tools";

const client = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });

const { text } = await generateText({
  model,
  tools: kynthTools(client),
  prompt: "Build a representment packet for this dispute: …",
});

LangChain

import { KynthCore } from "@kynth/api";
import { kynthLangchainTools } from "@kynth/ai-tools/langchain";

const client = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const tools = kynthLangchainTools(client); // DynamicStructuredTool[]

const agent = createReactAgent({ llm, tools });

Tools

ToolWhat it does
kynth_chargebackDispute details → representment narrative, evidence checklist, win likelihood
kynth_compareTwo document versions → every material change + risk notes
kynth_contractContract → parties, term, renewal, obligations, risk flags
kynth_statementBank/card statement → normalized transactions
kynth_po_matchInvoice vs PO vs receipt → 3-way match + discrepancies
kynth_dunningOverdue invoice → escalation-appropriate collection sequence
kynth_screenLead + your ICP → web-grounded qualification verdict
kynth_researchCompany/topic → multi-source, citation-backed brief
kynth_parseAny document (PDF/image/text) → structured, validated JSON
kynth_tablesAny document → every table as clean headers + rows

Document tools accept fileUrl, raw text, or fileBase64 + fileMimeType.

Also available: the MCP server (npx @kynth/api-mcp), the Python SDK, and CrewAI tools.

Keywords

kynth

FAQs

Package last updated on 10 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts