Skip to main content
DevHelm provides typed SDKs for TypeScript and Python, plus an MCP server for AI agent integration. Choose based on your runtime and use case.

SDKs

TypeScript SDK

Typed client for Node.js and browser environments. Full CRUD on all resources with auto-pagination.

Python SDK

Sync and async clients for Python 3.11+. Pydantic models for type safety.

Quick comparison

FeatureTypeScriptPython
Package@devhelm/sdkdevhelm
RuntimeNode.js 18+, browsersPython 3.11+
HTTP libraryopenapi-fetchhttpx
TypesOpenAPI-generated TypeScriptPydantic models
AsyncNative (Promise-based)AsyncDevHelm client
Paginationlist() auto-fetches, listPage() for manuallist() auto-fetches, list_page() for manual
Both SDKs provide the same resource coverage:
NamespaceOperations
Monitorslist, get, create, update, delete, pause, resume, test, results, versions
Incidentslist, get, create, resolve, delete
Alert channelslist, get, create, update, delete, test
Notification policieslist, get, create, update, delete, test
Tagslist, get, create, update, delete
Environmentslist, get, create, update, delete
Secretslist, create, update, delete
Resource groupslist, get, create, update, delete, add/remove members
Webhookslist, get, create, update, delete, test
API keyslist, create, revoke, delete
Dependencieslist, get, track, delete
Deploy lockacquire, current, release, force-release
Statusoverview

MCP Server

The MCP server lets AI coding assistants (Cursor, Claude Desktop) interact with your DevHelm account through natural language.

MCP Server

Setup and configuration for AI agent integration.

Tools reference

Complete catalog of 67 MCP tools.

Authentication

All SDKs authenticate with a DevHelm API token:
import { DevHelm } from "@devhelm/sdk";
const client = new DevHelm({ token: process.env.DEVHELM_API_TOKEN });
Tokens can also be resolved from the DEVHELM_API_TOKEN environment variable.

Next steps

TypeScript quickstart

Create your first monitor with the TS SDK.

Python quickstart

Create your first monitor with the Python SDK.

API Reference

Full REST API documentation.