
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@kynth/ai-tools
Advanced tools
ParseRail 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.
ParseRail 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.
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.
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: …",
});
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 });
| Tool | What it does |
|---|---|
kynth_chargeback | Dispute details → representment narrative, evidence checklist, win likelihood |
kynth_compare | Two document versions → every material change + risk notes |
kynth_contract | Contract → parties, term, renewal, obligations, risk flags |
kynth_statement | Bank/card statement → normalized transactions |
kynth_po_match | Invoice vs PO vs receipt → 3-way match + discrepancies |
kynth_dunning | Overdue invoice → escalation-appropriate collection sequence |
kynth_screen | Lead + your ICP → web-grounded qualification verdict |
kynth_research | Company/topic → multi-source, citation-backed brief |
kynth_parse | Any document (PDF/image/text) → structured, validated JSON |
kynth_tables | Any 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.
FAQs
ParseRail 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.
We found that @kynth/ai-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.