Skip to main content

Google Jules MCP server

Project description

Jules MCP Server (jules-mcp)

An MCP (Model Context Protocol) server that exposes Google Jules Agent operations via FastMCP.

This server lets MCP-compatible clients (and Python code) list Jules sources, create and manage sessions, and inspect activities using the official jules-agent-sdk.

  • Server framework: FastMCP
  • SDK: jules-agent-sdk
  • Python: 3.13+
  • License: Apache-2.0

Features

Tools exposed via the MCP server (grouped by area):

  • Sources
    • get_source(source_id)
    • list_sources(filter_str=None, page_size=None, page_token=None)
    • get_all_sources(filter_str=None)
  • Sessions
    • create_session(prompt, source, starting_branch=None, title=None, require_plan_approval=False)
    • get_session(session_id)
    • list_sessions(page_size=None, page_token=None)
    • approve_session_plan(session_id)
    • send_session_message(session_id, prompt)
    • wait_for_session_completion(session_id, poll_interval=5, timeout=600)
  • Activities
    • get_activity(session_id, activity_id)
    • list_activities(session_id, page_size=None, page_token=None)
    • list_all_activities(session_id)

See jules_mcp/jules_mcp.py for signatures and inline docstrings.

Installation

Option A — from a local checkout:

# from the repository root
pip install -e .

Option B — using uv (recommended during development):

# from the repository root
uv sync

The project targets Python 3.13+.

Configuration

Set your Jules API key via environment variable:

  • Windows PowerShell
    $Env:JULES_API_KEY = "<your_api_key_here>"
    
  • Unix shells (bash/zsh)
    export JULES_API_KEY="<your_api_key_here>"
    

If you do not provide an argument to jules(), the SDK reads JULES_API_KEY automatically.

Running the MCP server

There are two common ways to run the server.

  1. Programmatic run (in-process) using FastMCP Client — useful for testing or embedding:
import asyncio
from fastmcp import Client
from jules_mcp import mcp

async def main():
    async with Client(mcp) as client:
        # Example: list all sources (auto-paginated)
        result = await client.call_tool("get_all_sources")
        print(result)

asyncio.run(main())
  1. As a standalone MCP server executable for external MCP clients:
  • Using uv and FastMCP directly

    uv run fastmcp run jules_mcp/jules_mcp.py:mcp
    

    This starts the MCP server over stdio.

  • Using the provided configuration files

    • MCP.json: a sample command configuration for MCP-aware hosts.
    • fastmcp.json: FastMCP runtime/environment configuration.

Adjust paths in MCP.json if you use a different checkout location.

You can also run via the module entry point:

python -m jules_mcp

This calls start_mcp() which invokes FastMCP.run() using the "mcp" instance defined in the package.

Usage notes and examples

  • Listing and filtering sources
import asyncio
from fastmcp import Client
from jules_mcp import mcp

async def main():
    async with Client(mcp) as client:
        # Filter syntax follows AIP-160 filtering rules supported by Jules
        res = await client.call_tool(
            "list_sources",
            {"filter_str": "name=sources/source1 OR name=sources/source2", "page_size": 10}
        )
        print(res)

asyncio.run(main())
  • Creating a session and waiting for completion
import asyncio
from fastmcp import Client
from jules_mcp import mcp

async def run_session():
    async with Client(mcp) as client:
        session = await client.call_tool(
            "create_session",
            {
                "prompt": "Analyze the repository and propose improvements",
                "source": "sources/abc123",
                "require_plan_approval": True,
            },
        )

        # Optionally approve plan
        await client.call_tool("approve_session_plan", {"session_id": session["name"]})

        # Wait for completion
        final = await client.call_tool(
            "wait_for_session_completion",
            {"session_id": session["name"], "poll_interval": 5, "timeout": 600}
        )
        print(final)

asyncio.run(run_session())
  • Inspecting activities
import asyncio
from fastmcp import Client
from jules_mcp import mcp

async def list_acts(session_id: str):
    async with Client(mcp) as client:
        acts = await client.call_tool("list_all_activities", {"session_id": session_id})
        for a in acts:
            print(a)

asyncio.run(list_acts("sessions/abc123"))

Development

  • Create a virtual environment and install dev dependencies

    uv sync
    # or: pip install -e .[dev]
    
  • Run tests (note: some tools may reach the Jules API and require JULES_API_KEY)

    uv run pytest -q
    
  • Linting/formatting: follow your preferred tools; this repo does not include linters by default.

Project metadata

  • Package name: jules-mcp
  • Version: 0.1.0
  • Entry points:
    • Python module: python -m jules_mcp
    • FastMCP source: jules_mcp/jules_mcp.py:mcp

License

Apache License 2.0. See the LICENSE file for details.

Acknowledgements

Project details


Download files

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

Source Distribution

iflow_mcp_codeagentbridge_jules_mcp-0.1.6.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file iflow_mcp_codeagentbridge_jules_mcp-0.1.6.tar.gz.

File metadata

  • Download URL: iflow_mcp_codeagentbridge_jules_mcp-0.1.6.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_codeagentbridge_jules_mcp-0.1.6.tar.gz
Algorithm Hash digest
SHA256 f4871311408df8827cd3f3fb96fbcda5266793e8cbc96c73a4e17fc38aaf2b9c
MD5 442e6f6555a5d153b1b7c2d7b4d6b563
BLAKE2b-256 76d5d3cf157ae5f051c29d03d0c62d281536a12ca6bd411c5e350c5aff4d0479

See more details on using hashes here.

File details

Details for the file iflow_mcp_codeagentbridge_jules_mcp-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_codeagentbridge_jules_mcp-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_codeagentbridge_jules_mcp-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 6d56526a9ac56f2d6d18a7755a9da65b8ae18eb8eeadeaeb210f85fa87588bac
MD5 42705e1256dd5203fec6ca5b47b02957
BLAKE2b-256 163f303164ebc59654f8a45c585c93ce1eaec2413b3a4833e53e3ef6930bd811

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