google-jules-mcp-server
This server provides an MCP interface for Google's Jules AI coding agent, enabling AI assistants to manage asynchronous coding tasks on GitHub repositories.
Repository Management: List all connected GitHub repositories (
jules_list_sources) with optional filtering and pagination, and get details like branches and visibility for a specific repository (jules_get_source).Session Creation: Start a new asynchronous coding task (e.g., bug fix, test, refactor) by specifying a repository, branch, and prompt, with options for automatic plan approval and automatic pull request creation (
jules_create_session).Session Monitoring: List all sessions and their current states (
jules_list_sessions), check a session's progress, completion state, and recent activity (jules_get_status), and view detailed, paginated activity logs (jules_list_activities) or a specific activity entry by ID (jules_get_activity).Session Interaction: Send follow‑up messages to a running session (
jules_send_message) and approve execution plans when required (jules_approve_plan).Session Output: Retrieve the final results, including pull request details, from a completed session (
jules_get_session_output).Session Lifecycle: Delete (
jules_delete_session), archive (jules_archive_session), or unarchive (jules_unarchive_session) sessions to manage the task list.
Provides tools for interacting with Google's Jules AI coding agent API, enabling AI assistants to manage asynchronous coding tasks, sessions, and activities on connected repositories.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-jules-mcp-servercreate a session to fix the failing tests in my repository"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
google-jules-mcp-server
Model Context Protocol (MCP) server for Google's Jules AI coding agent — unofficial. Lets AI assistants like Claude create and manage asynchronous coding tasks through the Jules API v1alpha.
Overview
Jules is Google's AI coding agent that executes development tasks in isolated cloud VMs — generating code, fixing bugs, writing tests, updating dependencies, and refactoring across files. This server exposes the full Jules API surface as 13 MCP tools, covering repository sources, session lifecycle, and activity logs.
Tasks run asynchronously and typically complete in 5–60 minutes depending on complexity.
Related MCP server: Google Jules MCP
Architecture
The server is organized by Jules resource domain rather than as one flat file:
src/
├── index.ts # entrypoint: connects the stdio transport
├── server.ts # createServer(): wires the MCP server + all tool registrations
├── core/ # transport-agnostic: auth, HTTP client, retry/backoff, typed errors, logging
└── resources/
├── sources/ # jules_list_sources, jules_get_source
├── sessions/ # session lifecycle (create/list/status/message/approve/output/delete/archive/unarchive)
└── activities/ # jules_list_activities, jules_get_activityEach resource module owns its own Zod schemas, a typed API client, and its MCP tool registrations. Zod schemas are the single source of truth: TypeScript types are inferred from them (z.infer), and every Jules API response is validated at runtime through core/http-client.ts — so a drifted API response fails loudly as a JulesResponseValidationError instead of silently producing undefineds downstream.
core/http-client.ts also centralizes retry-with-backoff (bounded, honors Retry-After) and a typed error hierarchy (JulesAuthError, JulesNotFoundError, JulesRateLimitError, JulesServerError, JulesClientError, JulesNetworkError, JulesResponseValidationError) so callers can distinguish failure modes programmatically rather than pattern-matching error strings.
Prerequisites
Google Account with Jules access
Jules API Key — get one from https://jules.google.com/settings#api (up to 3 keys allowed)
GitHub Integration — install the Jules GitHub app at https://jules.google.com to connect repositories
Node.js 22+
Quick Start
1. Install
The package is published on npm as google-jules-mcp-server. Most MCP clients can run it directly via npx — no separate install step needed, skip to step 2.
If you'd rather install it once instead of letting your client invoke npx on every launch:
npm install -g google-jules-mcp-serverThis puts a google-jules-mcp binary on your PATH.
Building from source (for contributors, or to run unreleased changes):
git clone https://github.com/georgeracu/google-jules-mcp-server.git
cd google-jules-mcp-server
npm install
npm run build2. Configure your API key
Get a key from https://jules.google.com/settings#api. Set it directly in your MCP client's server config (see below) — that's the only place it needs to live for normal use.
If you're building from source and want to run npm run test:smoke or use .env for local scripts:
cp .env.example .env
# edit .env and set JULES_API_KEY3. Register the server with your MCP client
Claude Desktop — edit the config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"jules": {
"command": "npx",
"args": ["-y", "google-jules-mcp-server"],
"env": { "JULES_API_KEY": "your_actual_jules_api_key_here" }
}
}
}Claude Code:
claude mcp add jules -s user -e JULES_API_KEY=your_actual_jules_api_key_here -- npx -y google-jules-mcp-serverIf you installed globally instead, replace "command": "npx", "args": ["-y", "google-jules-mcp-server"] with "command": "google-jules-mcp", "args": [] (and the npx -y google-jules-mcp-server in the Claude Code command with just google-jules-mcp).
If you're running from a local clone instead, use "command": "node", "args": ["/absolute/path/to/google-jules-mcp-server/build/index.js"] (an absolute path to build/index.js).
Restart your client after editing its config.
4. Verify
Ask your assistant: "List my Jules repositories." You should see the jules server connected with 13 tools available.
Available Tools
Tool | Purpose |
| List GitHub repositories connected to Jules |
| Get details (branches, visibility) for one connected repository |
| Start a new asynchronous coding task |
| List sessions and their states |
| Check a session's status and recent activity |
| Send a follow-up instruction to a running session |
| Approve a session's execution plan (when |
| Retrieve the final output (PR details) of a completed session |
| Permanently delete a session |
| Archive a session without deleting it |
| Restore an archived session |
| Get a session's detailed activity log |
| Get a single activity by ID |
Async Workflow Pattern
Create a session — returns immediately with a session ID.
Poll every 10–30 seconds with
jules_get_status.Monitor detailed progress with
jules_list_activities.Retrieve the pull request URL once state is
COMPLETED, viajules_get_session_output.
Your assistant handles this polling loop automatically when asked to monitor a task.
Rate Limits and Quotas
Jules enforces task quotas based on subscription tier (Free: 15 daily / 3 concurrent; Google AI Pro: ~75 daily / 15 concurrent; Google AI Ultra: ~300 daily / 60 concurrent). Tasks count against quota even if they fail, on a rolling 24-hour window.
Development
See CONTRIBUTING.md for the full setup and PR checklist, and CODE_OF_CONDUCT.md for community standards.
npm run dev # tsc --watch
npm run lint # eslint
npm run format # prettier --check
npm run typecheck # tsc --noEmit
npm test # vitest run
npm run test:coverage # vitest run --coverage (enforces threshold)
npm run test:watch # vitest
npm run inspector # MCP Inspector — exercise tools without a full clientTesting strategy
Unit tests use MSW to intercept HTTP at the network layer rather than mocking the client module directly — this means core/http-client.ts's own logic (auth headers, retry/backoff, error mapping, Retry-After parsing) is exercised by tests, not just the handlers built on top of it. Fixtures in tests/fixtures/ encode real, previously-verified Jules API response shapes as MSW mock bodies; because the real client parses them through the Zod schemas at test time, a schema/fixture mismatch fails the test suite immediately.
tests/smoke/live-api.smoke.test.ts is an opt-in, read-only smoke test against the real Jules API (jules_list_sources only, to avoid spending task quota). It's excluded from npm test and CI, and only runs via:
JULES_LIVE_SMOKE_TEST=1 npm run test:smokeAdding a new tool
Add/extend the resource's
schemas.ts(Zod schema + inferred type).Add the API call to that resource's
client.ts.Add formatting logic to
format.tsand the handler +registerToolcall totools.ts.Add MSW-backed tests for the client, format, and tool-handler layers.
Troubleshooting
Tools not appearing: verify the absolute path in your client config, confirm
build/index.jsexists (npm run build), and restart the client completely."JULES_API_KEY environment variable is required": the key isn't set in your client's server config
envblock."No repositories connected to Jules": visit https://jules.google.com, connect your GitHub account, and grant repository access.
401 / 403 / 404: 401 means an invalid API key (regenerate at the settings link above), 403 means insufficient permissions or exceeded quota, 404 means the session or repository ID doesn't exist.
Security
Found a vulnerability? See SECURITY.md for how to report it privately.
API Reference
Base URL:
https://jules.googleapis.com/v1alphaAuthentication:
X-Goog-Api-KeyheaderJules web app: https://jules.google.com
License
MIT
Changelog
See GitHub Releases — every published version gets an auto-generated release with notes grouped by change type.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server for automating Google Jules that enables seamless integration for task creation, code analysis, and AI-powered development workflows. It supports multiple session modes including Browserbase and cookie-based authentication for both local and cloud environments.Last updated131414MIT
- Alicense-qualityDmaintenanceAn MCP server that enables users to manage Google's Jules AI coding agent sessions directly from MCP-compatible clients. It supports creating sessions, approving execution plans, and interacting with session activity to streamline autonomous coding workflows.Last updated29MIT
- AlicenseAqualityFmaintenanceA lightweight MCP server that enables AI coding assistants to interact with Google's Gemini AI through the official CLI.Last updated3MIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/georgeracu/google-jules-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server