Getting Started
Deploy your first autonomous agent in minutes with MeerTech Agentic Core.
Prerequisites
- Node.js 18+ or Python 3.9+ installed
- Active MeerTech account with API credentials
- Basic understanding of REST APIs
Installation
Python SDK
pip install meertech-agentic-coreTypeScript/Node.js SDK
npm install @meertech/agentic-coreQuick Start
1. Initialize Your Agent
from meertech import AgenticCore
# Initialize client
client = AgenticCore(api_key="your_api_key")
# Create your first agent
agent = client.agents.create(
name="DataProcessor",
behavior="autonomous",
capabilities=["data_analysis", "reporting"]
)2. Define Agent Tasks
# Assign task to your agent
task = agent.assign_task(
description="Analyze Q4 sales data",
data_source="s3://your-bucket/sales.csv",
output_format="executive_summary"
)3. Monitor Execution
# Check task status
status = task.get_status()
print(f"Progress: {status.progress}%")
# Get results when complete
if status.completed:
results = task.get_results()
print(results.summary)