anthropics/anthropic-sdk-typescript aws-sdk: v0.3.0

GitHub Releases Watchlist Tools

Summary

Anthropic released version 0.3.0 of its official TypeScript SDK for the Claude API, enabling server-side JavaScript and TypeScript applications to easily integrate Claude models via NPM.

0.3.0 (2026-05-11) Full Changelog: aws-sdk-v0.2.5...aws-sdk-v0.3.0 Features aws: Add AWS client for Claude Platform on AWS (7a31772)
Original Article Export to Word Export to PDF
View Cached Full Text

Cached at: 05/11/26, 03:50 PM

anthropics/anthropic-sdk-typescript

Source: https://github.com/anthropics/anthropic-sdk-typescript

Claude SDK for TypeScript

NPM version

The Claude SDK for TypeScript provides access to the Claude API from server-side TypeScript or JavaScript applications.

Documentation

Full documentation is available at platform.claude.com/docs/en/api/sdks/typescript.

Installation

npm install @anthropic-ai/sdk

Getting started

import Anthropic from '@anthropic-ai/sdk';

const client = new Anthropic({
  apiKey: process.env['ANTHROPIC_API_KEY'], // This is the default and can be omitted
});

const message = await client.messages.create({
  max_tokens: 1024,
  messages: [{ role: 'user', content: 'Hello, Claude' }],
  model: 'claude-opus-4-6',
});

console.log(message.content);

Requirements

Node.js 18+

Contributing

See CONTRIBUTING.md.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Similar Articles

anthropics/anthropic-sdk-typescript sdk: v0.89.0

GitHub Releases Watchlist

Anthropic releases v0.89.0 of the Claude SDK for TypeScript, providing developers with updated access to the Claude API for server-side TypeScript and JavaScript applications.

anthropics/anthropic-sdk-python v0.96.0

GitHub Releases Watchlist

Anthropic releases version 0.96.0 of the Claude SDK for Python, providing updated access to the Claude API for Python applications.

anthropics/anthropic-sdk-python v0.100.0

GitHub Releases Watchlist

This article announces version 0.100.0 of the official Anthropic SDK for Python, providing developers with updated tools to integrate Claude models into their applications via pip installation.