@alchymos/mcp
v0.1.12
Published
Official Alchymos SDK plugin for MCP client and server
Readme
@alchymos/mcp — Alchymos MCP SDK
Official Alchymos SDK plugin for MCP client and servers.
Install
Install the package into your project:
npm install @alchymos/mcpMCP Client
Use the SDK by creating an Alchymos instance and wiring it to your MCP-compatible client instance.
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
Use the SDK by creating an Alchymos instance and wiring it to your MCP-compatible server instance.
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);