@morph-llm/morphsdk
v0.2.4
Published
TypeScript SDK and CLI for Morph Fast Apply integration
Downloads
15
Maintainers
Readme
Morph SDK
Production-ready tools for AI coding agents: Fast Apply (10,500 tokens/s)
Install
npm install @morph-llm/morphsdkGet your API key: morphllm.com/dashboard/api-keys
export MORPH_API_KEY="sk-your-key-here"Quick Start
import { MorphClient } from '@morph-llm/morphsdk';
const morph = new MorphClient({
apiKey: process.env.MORPH_API_KEY
});
// AI-powered file editing
await morph.fastApply.execute({
target_filepath: 'src/app.ts',
instructions: 'Add error handling',
code_edit: 'try { ... } catch (e) { ... }'
});Documentation
Full docs: docs.morphllm.com
