Alchymos
Lightweight Plugin Library

Alchymos SDK

Enables seamless integration of caching, observability, and security into Agents workflows across multiple languages and runtimes.

npm install @alchymos/openai
Zero Dependencies
Easy Integration
TypeScript Support

OpenAI

Quick drop-in integration for OpenAI LLM instances. Install the package, construct the Alchymos wrapper and call withLlm to enable caching and observability on your OpenAI client.

npx install @alchymos/openai // Quick start import OpenAI from "openai"; import { Alchymos } from '@alchymos/openai'; const openai = new OpenAI(...); const alchymos = new Alchymos('your-token'); alchymos.withLlm(openai);

MCP Client

Integrate Alchymos with MCP clients to cache, monitor and instrument client-side tool calls. This reduces repeated work and surfaces metrics across your client integrations.

npx install @alchymos/mcp // Quick start import { Client } from "@modelcontextprotocol/sdk/client/index.js"; import { Alchymos } from '@alchymos/mcp'; const client = new Client(...); const alchymos = new Alchymos('your-token'); alchymos.withClient(client);

MCP Server

Add Alchymos to MCP servers to offload repetitive processing, serve cached responses at the edge, and collect observability data for server-side tool calls.

npx install @alchymos/mcp // Quick start import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { Alchymos } from '@alchymos/mcp'; const server = new Server(...); const alchymos = new Alchymos('your-token'); alchymos.withServer(server);