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-core

TypeScript/Node.js SDK

npm install @meertech/agentic-core

Quick 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)

Next Steps

API Reference

Explore the complete API documentation with all available endpoints and methods.

Advanced Guides

Learn how to build complex multi-agent systems with custom behaviors.

Need Help?

Our technical team is available 24/7 to assist with integration and deployment.