Skip to main content

Mech Server

PyPI PyPI - Python Version PyPI - Wheel License Downloads

Sanity checks and tests Coverage flake8 mypy Black bandit

A CLI to create, deploy and manage Mechs — AI agents that execute tasks on-chain for payment — on the Olas Marketplace.

Note: The codebase uses the term service (from the underlying Open Autonomy framework) interchangeably with AI agent.

Quick Start

pip install mech-server
mech setup -c <chain>
mech run -c <chain>

Supported Chains

Chain Native OLAS Token USDC Token Nevermined
Gnosis
Base
Polygon
Optimism

Requirements

Commands

Command Description
mech setup -c <chain> Full first-time setup: workspace, agent build, mech deployment, env config, key setup
mech add-tool <author> <name> Scaffold a new mech tool
mech prepare-metadata -c <chain> Recompute package fingerprints, push packages and metadata to IPFS, and write METADATA_HASH and TOOLS_TO_PACKAGE_HASH to .env
mech prepare-metadata -c <chain> --offchain-url <url> Same as above, also sets the offchain URL in metadata and .env
mech update-metadata -c <chain> Update the metadata hash on-chain via Safe transaction
mech run -c <chain> Run the mech AI agent via Docker
mech stop -c <chain> Stop a running mech AI agent

Developing a new tool

New service (no existing mech)

  1. Set up the workspace and deploy the mech on-chain:

    mech setup -c <chain>
    
  2. Scaffold a tool:

    mech add-tool <author> <tool_name> -d "Tool description"
    
  3. Implement the tool logic in ~/.operate-mech/packages/<author>/customs/<tool_name>/<tool_name>.py. The scaffold generates a working stub with the correct structure:

    ALLOWED_TOOLS = ["tool_name"]
    
    def run(**kwargs: Any) -> MechResponse:
        prompt = kwargs.get("prompt")
        if prompt is None:
            return error_response("No prompt has been given.")
        result = do_work(prompt)
        context = None
        artifact = None
        callback = None
        return result, prompt, context, artifact, callback
    
  4. If your tool requires API keys or other secrets, add them to ~/.operate-mech/.env.

  5. (Optional) If your mech should serve off-chain requests over HTTP, provide a URL that routes to the mech's HTTP server (localhost:8000). This URL is included in the mech's on-chain metadata so that clients can discover it:

    mech prepare-metadata -c <chain> --offchain-url <url>
    

    Alternatively, set MECH_OFFCHAIN_URL in ~/.operate-mech/.env.<chain> and run prepare-metadata without the flag.

  6. Generate and publish metadata (to IPFS), then update the on-chain registry:

    mech prepare-metadata -c <chain>
    mech update-metadata -c <chain>
    
  7. Run:

    mech run -c <chain>
    

Existing service (mech already running)

  1. Stop the service:

    mech stop -c <chain>
    
  2. Scaffold, implement, and set any required API keys (same as steps 2–4 above).

  3. Generate and publish metadata (to IPFS), then update:

    mech prepare-metadata -c <chain>
    mech update-metadata -c <chain>
    
  4. Restart:

    mech run -c <chain>
    

Documentation

Find the full tutorial (tool development, publishing, sending requests) at stack.olas.network.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mech_server-0.8.5.tar.gz (956.6 kB view details)

Uploaded Source

Built Distribution

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

mech_server-0.8.5-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file mech_server-0.8.5.tar.gz.

File metadata

  • Download URL: mech_server-0.8.5.tar.gz
  • Upload date:
  • Size: 956.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for mech_server-0.8.5.tar.gz
Algorithm Hash digest
SHA256 3286bc65772b5b6e34119d48b1997fd7301fe98d6a31817123b3f329ac7e1eb0
MD5 82c62d665799cbc84dc1971e5b8db575
BLAKE2b-256 170d208bc3c729c4315092bcbd15ddc3482c886d435f576fc11d79b15fe774e9

See more details on using hashes here.

File details

Details for the file mech_server-0.8.5-py3-none-any.whl.

File metadata

  • Download URL: mech_server-0.8.5-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for mech_server-0.8.5-py3-none-any.whl
Algorithm Hash digest
SHA256 07017882a85d55dcfd8dd906a16bfa92183daf062cab6b626a37dd5784f51ef9
MD5 e9b44208fc452762bfceed40a769a12d
BLAKE2b-256 10e6b4308b52d6edb73c8f8a3467c755d204a462a4258e0f099c984efc2e6068

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 Sentry Error logging StatusPage Status page