SDKs & Libraries

Official client libraries for Python, TypeScript, Go, and Java

Python SDK

v2.4.1

Official Python client for Agentic Core, Neural Grid, and Sentinel APIs.

pip install meertech-sdk

Features

Async/await supportType hintsStreaming responsesAuto-retry logic

TypeScript SDK

v2.3.0

Fully typed TypeScript/JavaScript client with Node.js and browser support.

npm install @meertech/sdk

Features

Full TypeScript typesTree-shakeableEdge runtime supportReact hooks

Go SDK

v1.8.2

High-performance Go client with context support and connection pooling.

go get github.com/meertech/go-sdk

Features

Context propagationConnection poolinggRPC supportPrometheus metrics

Java SDK

v2.1.0

Enterprise Java client with Spring Boot integration and reactive support.

implementation "com.meertech:sdk:2.1.0"

Features

Spring Boot starterReactive streamsMicrometer metricsVirtual threads

Quick Start

Get started with our SDKs in minutes. Here's a quick example of creating and running an agent.

from meertech import AgenticCore

# Initialize the client
client = AgenticCore(api_key="your-api-key")

# Create an autonomous agent
agent = client.agents.create(
    name="research-agent",
    model="agentic-core-v2",
    instructions="You are a research assistant..."
)

# Run the agent
result = await agent.run(
    task="Analyze Q4 market trends",
    tools=["web_search", "data_analysis"]
)

print(result.output)