Skip to main content

AI Agents for Solana

Project description

Solana Agent

PyPI - Version Python 3.13-3.14 PyPI - Downloads License: MIT codecov Build Status Ruff Style

Thin public SDK for the hosted Solana Agent platform.

The public package is intentionally small:

  • One agent per client instance.
  • Hosted chat and hosted wallet flows.
  • Hosted account and pricing APIs.
  • MCP plugin support for external tools.

Python Support

We support the current and previous CPython minor versions.

Today that means:

  • Python 3.14
  • Python 3.13

Install

pip install solana-agent

Quick Start

Use the Solana Agent CLI to get a new privy_user_id from the interactive menu:

uvx solana-agent wallet menu

The generated privy_user_id is saved automatically in the user-local Solana Agent app data directory on Windows, macOS, and Linux. Passing privy_user_id= or config.ai.privy_user_id still overrides the saved value.

from solana_agent import SolanaAgent

agent = SolanaAgent(
    instructions="You are a Solana trading bot.",
    privy_user_id="my-privy-user-id",
)

context = await agent.context(
    conversation_id="my-conversation-id",
    model="chat",
)

response = await agent.message(
    message="What is the price of SOL?",
    **context
)

print(response)

Hosted Memory

context = await agent.context(
    conversation_id="my-conversation-id",
    model="memory",
    memory_ttl_tier="project",
)

Priority Service Tier

context = await agent.context(
    service_tier="priority",
)

MCP Tools

Connect Streamable HTTP MCP servers by enabling the mcp tool and adding server config:

import os
from solana_agent import SolanaAgent

agent = SolanaAgent(
    config={
        "ai": {
            "instructions": "Use connected MCP tools when they help the user.",
            "privy_user_id": os.environ["PRIVY_USER_ID"],
            "tools": ["mcp"],
        },
        "tools": {
            "mcp": {
                "servers": [
                    {
                        "url": os.environ["MCP_SERVER_URL"],
                        "headers": {
                            "Authorization": f"Bearer {os.environ['MCP_SERVER_TOKEN']}",
                        },
                    }
                ],
                "llm_provider": "openai",
                "api_key": os.environ["OPENAI_API_KEY"],
                "llm_model": "gpt-4.1-mini",
            }
        },
    }
)

context = await agent.context(
    conversation_id="mcp-demo",
    model="chat",
)

response = await agent.message(
    "Use the connected MCP tools to summarize my latest CRM tasks.",
    **context,
)

print(response)

Wallet and Billing Helpers

wallet_address = await agent.get_wallet_address()

summary = await agent.get_account_summary()

report = await agent.get_usage_report(
    "month"
)

forecast = await agent.get_usage_forecast(
    window_days=30,
)

pricing = await agent.get_pricing_info()

tooling_totals = summary.get("tooling", {}).get("lifetime", {}).get("totals", {})
tooling_projection = (
    forecast.get("tooling", {})
    .get("projected_month_end", {})
    .get("totals", {})
)

print(tooling_totals)
print(tooling_projection)

Private Key Export

Export the hosted wallet private key when you want self-custody:

uvx solana-agent wallet export --yes

Pass --wallet-id to export an older rotated wallet from old_wallets.

Rotating Wallets

If a wallet needs to be retired, rotate it from the interactive menu:

uxv solana-agent wallet menu

Smoke Testing

For a live hosted smoke run from the CLI, use the dev-gated wallet smoke command or the dev-only wallet menu item:

uvx solana-agent wallet smoke --dev
uvx solana-agent wallet menu --dev

The smoke preview prints a funding estimate in USDC before the live chat checks run. Search-enabled checks are included by default; wallet rotation and private-key export checks are opt-in. Add --json to wallet smoke when you want machine-readable output instead of tables.

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

solana_agent-34.0.1.tar.gz (52.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

solana_agent-34.0.1-py3-none-any.whl (64.9 kB view details)

Uploaded Python 3

File details

Details for the file solana_agent-34.0.1.tar.gz.

File metadata

  • Download URL: solana_agent-34.0.1.tar.gz
  • Upload date:
  • Size: 52.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for solana_agent-34.0.1.tar.gz
Algorithm Hash digest
SHA256 8953f2c4503517f8b12945fa454f6ae4010faad48205e1be670d26bf92a23b79
MD5 c4e2044d5b8ef90d572bcbda8933754c
BLAKE2b-256 ff4d1aa868bbf619a595ae9517a4b77e1b3bb42ba94a850eedb29c23b385b1ae

See more details on using hashes here.

File details

Details for the file solana_agent-34.0.1-py3-none-any.whl.

File metadata

  • Download URL: solana_agent-34.0.1-py3-none-any.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for solana_agent-34.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e19bec2db3d3f6a6a6ab25c143dadfcc2f3b2b439ff744018955a28e6ae67c43
MD5 2a5e874bc2fa37de5c08bb4abdf6956b
BLAKE2b-256 11bd0b92f8ca4dbc534d4f1db61fa1ba239244c5c48b76be80f398acb9fbf35c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page