Micro agent with tool support and MCP integration.
Project description
z007 ⚡ Fast Micro Agent
Pronounced as "ze double O 7"
A lightweight and readable agent for interacting with LLM on AWS Bedrock with tool and MCP (Model Context Protocol) support.
Features
- 🟢 Ultra Readable: Clean, maintainable codebase in ~500 lines - easy to understand, modify, and extend
- ⚡ Super easy: Just run
uvx z007withAWS_PROFILE=<your profile>in env and start chatting instantly - ⚡ Simple Install: Quick install
uv tool install --upgrade z007and start chatting instantlyz007withAWS_PROFILE=<your profile>in env - 🔧 Tool Support: Built-in calculator and easily use plain python functions as tools
- 🔌 MCP Integration: Connect to Model Context Protocol servers
- 🐍 Python API: Easy integration into your Python projects
- 🚀 Async: Concurrent tool execution
Quick Start
Install and run with uvx (recommended)
# Install and run directly with AWS_PROFILE configured - fastest way to start!
uvx z007
# Or install globally with AWS_PROFILE configured
uv tool install z007
z007
Install as Python package
pip install z007
Usage
Command Line
# Start interactive chat
z007
# With custom model (AWS Bedrock)
z007 --model-id "anthropic.claude-3-sonnet-20240229-v1:0"
# With MCP configuration
z007 --mcp-config ./mcp.json
Python API
Simple usage
import asyncio
from z007 import Agent
async def main():
async with Agent(model_id="openai.gpt-oss-20b-1:0") as agent:
response = await agent.run("What is 2+2?")
print(response)
asyncio.run(main())
Using the Agent class
import asyncio
from z007 import Agent
async def main():
async with Agent(
model_id="openai.gpt-oss-20b-1:0",
system_prompt="You are a helpful coding assistant."
) as agent:
response = await agent.run("Write a Python function to reverse a string")
print(response)
asyncio.run(main())
Custom Tools
Create your own tools by writing simple Python functions:
import asyncio
from z007 import Agent
def weather_tool(city: str) -> str:
"""Get weather information for a city"""
# In a real implementation, call a weather API
return f"The weather in {city} is sunny, 25°C"
def file_reader_tool(filename: str) -> str:
"""Read contents of a file"""
try:
with open(filename, 'r') as f:
return f.read()
except Exception as e:
return f"Error reading file: {e}"
async def main():
async with Agent(
model_id="openai.gpt-oss-20b-1:0",
tools=[weather_tool, file_reader_tool]
) as agent:
response = await agent.run("What's the weather like in Paris?")
print(response)
asyncio.run(main())
MCP Integration
Connect to Model Context Protocol servers for advanced capabilities:
- Create
.vscode/mcp.json:
{
"servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "${env:BRAVE_API_KEY}"
}
}
}
}
- Use with z007:
z007 --mcp-config .vscode/mcp.json
Or in Python:
from z007 import Agent
async with Agent(
model_id="openai.gpt-oss-20b-1:0",
mcp_config_path=".vscode/mcp.json"
) as agent:
response = await agent.run("Search for recent news about AI")
print(response)
Configuration
Environment Variables
For AWS Bedrock (default provider):
-
AWS_PROFILE: AWS profile nameor
-
AWS_REGION: AWS region (default: us-east-1) -
AWS_ACCESS_KEY_ID: AWS access key -
AWS_SECRET_ACCESS_KEY: AWS secret key
Supported Models
Current AWS Bedrock models:
openai.gpt-oss-20b-1:0(default)- Any AWS Bedrock model with tool support
Interactive Commands
When running z007 in interactive mode:
/help- Show help/tools- List available tools/clear- Clear conversation history/exit- Exit
Requirements
- Python 3.9+
- LLM provider credentials (AWS for Bedrock)
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file z007-0.1.8.tar.gz.
File metadata
- Download URL: z007-0.1.8.tar.gz
- Upload date:
- Size: 418.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66cbfdf1a3850157f69bff8454023483a858ee315966db0c8ba6c512dc61d71a
|
|
| MD5 |
d6970ab0e776b4b7fd42426c746b140d
|
|
| BLAKE2b-256 |
096fe7ff5fa90e33aac03041aa9bdf802f203c5fb85ed6a2e5de41162f9dbecf
|
File details
Details for the file z007-0.1.8-py3-none-any.whl.
File metadata
- Download URL: z007-0.1.8-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc44c176998e1edcb7981d2d6950f10f8882e4d3018e5df13b29c1db5c2314ec
|
|
| MD5 |
47f5e6d336083b4c98416ad38d5b0daf
|
|
| BLAKE2b-256 |
79703dbb5ce9639da40bcd0ed9d35f4f0ff63722989318a41c1167c2081e3a6b
|