Skip to main content

Pocket-Agent

Pocket Agent

A lightweight, extensible framework for building LLM agents with Model Context Protocol (MCP) support

PyPI - Version License


Table of Contents


Why Pocket Agent?

Most agent frameworks are severely over-bloated. The reason for this is that they are trying to support too many things at once and make every possible agent implementation "simple". In the end, you might find yourself using 5-10% of the framework's code for your use case, meaning 90-95% is noise when you encounter a bug. This makes adding features and debugging unnecessarily complex.

Pocket Agent takes the opposite approach by implementing the basic functionalities of an Agent as an abstraction one layer above the MCP Client with useful features to provide first-class support for customization. This makes Pocket Agent extremely lightweight. In fact, so lightweight that the entire core framework and documentation can easily fit into most LLM context windows (see the built-in utility for this here). The minimal nature also means that you will use 90-95% of the framework's code for every agent you create.

Despite the minimal code, Pocket Agent is extremely powerful, even out-of-the-box with no custom extensions. By default, Pocket Agent enables users to:

  • Use any remote or local MCP server(s) to integrate any amount of custom tools
  • Run a typical agent loop (generate message, execute tool calls, handle tool results until the LLM does not call any tools)
  • Allow tools to be run in parallel, minimizing execution bottlenecks
  • Build multi-agent systems using built-in features to facilitate interaction
  • View agents' behavior in a minimal built-in CLI frontend
  • Use any local or remote LLM and enforce tpm/rpm limits for parallel LLM generations (Thanks to LiteLLM)

Design Principles

🚀 Lightweight & Simple

  • Clean abstractions that separate agent logic from MCP client details
  • Core functionality is only 2 files
  • Only implements the core, non-case-specific features of an LLM agent

💡 Extensible

  • Easily integrate a custom frontend using the built-in event system
  • Easily implement fully custom agent behaviors
  • Easily develop multi-agent systems

Installation

Install with uv (Recommended):

uv add pocket-agent

Install with pip:

pip install pocket-agent

Quick Start (For LLMs)

LLMs are excellent at building with Pocket Agent. Mostly, because the entirety of the core framework is minimal enough to easily fit into most LLM context windows.

Pocket Agent provides a simple command-line utility for this exact use case: pocket-dump

📄 Using pocket-dump

After installation, use pocket-dump to generate complete documentation with source code:

# Generate complete documentation + source code as pocket-agent-source.md
pocket-dump

# Custom filename
pocket-dump my-pocket-agent-reference.md

# Only include documentation
pocket-dump --docs-only

# Only include source code  
pocket-dump --source-only

The generated file contains everything an LLM needs to understand and build with Pocket Agent - no need to piece together multiple documentation sources or guess at implementation details.

Quick Start (For Humans)

You can use PocketAgent out of the box in 3 steps:

  1. Configure the agent:

    from pocket_agent import AgentConfig
    
    # Configure and run
    config = AgentConfig(
        llm_model="gpt-4",
        system_prompt="You are a helpful assistant."
    )
    
  2. Define the mcp servers the agent can access:

    servers = {
        "mcpServers": {
            "weather_tools": {
                "transport": "stdio",
                "command": "python",
                "args": ["server.py"],
                "cwd": "path/to/server.py"
            }
        }
    }
    
  3. Initialize and run the agent:

    import asyncio
    from pocket_agent import PocketAgent
    
    agent = PocketAgent(agent_config=config, mcp_config=servers)
    
    agent_final_answer = await agent.run("What's the weather fo London?")
    

In the above example, the run method will add the input as a user message, and then run in a loop generating new messages and running any tools called by the configured LLM until the configured LLM generates a response which does not have any tool calls. All of the messages to and from the agent are neatly formatted in the console by default.

Pocket Agents are meant to be extended far beyond this behavior. Refer to the sections below for implementation examples and full documentation

🧑‍🍳 Cookbook

Find example implementations of Pocket Agents and their extensions in the Cookbook

📖 Documentation

For comprehensive documentation on all features and advanced usage, see the documentation folder:

Feature Roadmap

Core Features

Feature Status Priority Description
Agent Abstraction ✅ Implemented - Basic agent abstraction with PocketAgent base class
MCP Protocol Support ✅ Implemented - Full integration with Model Context Protocol via fastmcp
Multi-Model Support ✅ Implemented - Support for any LiteLLM compatible model/endpoint
Tool Execution ✅ Implemented - Automatic parallel tool calling and results handling
Hook System ✅ Implemented - Allow configurable hooks to inject functionality during agent execution
Logging Integration ✅ Implemented - Built-in logging with custom logger support
Multi-Agent Integration ✅ Implemented - Allow a PocketAgent to accept other PocketAgents as Sub Agents and automatically set up Sub Agents as tools for the Agent to use
function-as-a-tool support 📋 Planned Medium Allow python functions to be passed to PocketAgent to act as tools
**Define Defaults for standard MCP Client handlers 📋 Planned Medium Standard MCP client methods (i.e. sampling, progress, etc) may benefit from default implementations if custom behavior is not often needed
Streaming Responses 📋 Planned Medium Real-time response streaming support
**Define Defaults for standard MCP Client handlers 📋 Planned Medium Standard MCP client methods (i.e. sampling, progress, etc) may benefit from default implementations if custom behavior is not often needed
Resources Integration 📋 Planned Medium Automatically set up mcp read_resource functionality as a tool (resources are not very commonly used today so this may not be necessary)

Modality support

Modality Status Priority Description
Text ✅ Implemented - Multi-modal input support for vision models
Images ✅ Implemented - Multi-modal input support for VLMs with option to enable/disable
Audio 📋 Planned Low Multi-modal input support for LLMs which allow audio inputs

Release files for pocket-agent 0.2.30

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pocket-agent 0.2.30
File Size Uploaded
pocket_agent-0.2.30.tar.gz 5.3 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for pocket-agent 0.2.30
File Interpreter ABI Platform
pocket_agent-0.2.30-py3-none-any.whl Python 3 none any Details

Total release size: 5.3 MB

Release files / pocket_agent-0.2.30.tar.gz

Download URL pocket_agent-0.2.30.tar.gz
Size 5.3 MB
Tags Source
SHA-256 checksum
How to use checksums
1a0f8982c59d77f16cee8ca7de23b7110f467a5abe37db3d3cffc8e0e3032abd
BLAKE2b-256 checksum
How to use checksums
921be54c563ae154471559eff1c863df0b29d64510c9b5aef57d4c5af8d2c387
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.8

Release files / pocket_agent-0.2.30-py3-none-any.whl

Download URL pocket_agent-0.2.30-py3-none-any.whl
Size 33.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
cfc10c37e005b26bbd33a578cff472c621430b969e0356feb8e0818ca3304605
BLAKE2b-256 checksum
How to use checksums
fa7ffc47018f940eb15039d1ac1b01b25defab4295e81cc01d761e001d2f6378
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.8

Release history Release notifications | RSS feed

This release

0.2.30 This release

2 release files

0.2.21

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.11

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page