Jules MCP Server
Integrates with GitHub repositories to manage Jules sessions, handle pull requests, and interact with repository branches for coding tasks.
Provides tools for managing Google Jules coding sessions, including creating, monitoring, approving plans, and interacting with Jules as a remote coding agent through the Jules API.
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., "@Jules MCP ServerCreate a Jules session to refactor login module on my-org/my-repo."
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.
Jules Manager (TypeScript) (Server Version 1.3.0)
An MCP server implementation for orchestrating Google Jules as a remote coding agent from a local coding agent. The system handles the full lifecycle: task decomposition, API-based dispatch to Jules, asynchronous status monitoring, intervention handling, code review, and PR merging.
Core Principle
The local agent must not waste context window tokens on active polling. A decoupled monitoring mechanism handles polling independently and only triggers the local agent when human-level input or a final review is required.
Background monitor enforcement: periodic polling in scripts/jules_monitor.ts is hard-wired to call only jules_check_jules (compact Q/C/F/N responses). The monitor does not call jules_get_session during polling. Detailed session retrieval is reserved for follow-up handling after actionable events.
Related MCP server: Jules API MCP
Overview
The Jules MCP server acts as a bridge between a local coding environment and the Google Jules API. It enables you to:
Create and manage Jules coding sessions directly from your development environment.
Monitor session progress automatically in the background.
Handle requests for human input (like plan approvals or clarifications) using event watchers.
Extract pull request information directly from completed sessions.
Quick Start / Installation
Prerequisites
Node.js 20+
JULES_API_KEYenvironment variable set with your Jules API key
Install Dependencies
npm installStart the System
The system is composed of three running processes for full functionality:
# Terminal 1: Build the TypeScript project
npm run build
# Terminal 2: Start the background monitor
node build/scripts/jules_monitor.js --config config.json
# Terminal 3: Start the event watcher
node build/scripts/jules_event_watcher.js --command "node build/scripts/event_handler.js"CLI Usage
jules_cli (Friendly CLI)
The easiest way to interact with Jules from the command line is the jules_cli wrapper:
npm run jules -- <command> [options]Commands:
Command | Description | Options |
| Create a new Jules session |
|
| Get session details |
|
| List all sessions | (none) |
| Approve a session's plan |
|
| Archive a session |
|
| Restore an archived session |
|
| Poll a session until it completes/fails |
|
Examples:
# Create a session
npm run jules -- create --owner my-org --repo my-repo --branch main --prompt "Refactor the login module"
# List sessions
npm run jules -- list
# Get a specific session
npm run jules -- get --session-id 12345
# Approve a plan
npm run jules -- approve --session-id 12345
# Monitor a session (polls every 60s)
npm run jules -- monitor --session-id 12345 --interval 60mcp-client (Raw MCP Tool Invocation)
For direct MCP tool calls (useful for scripting or debugging), use the generic MCP client:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool <TOOL_NAME> --arguments '<JSON_ARGUMENTS>'MCP Tools
The Jules MCP server exposes the following 16 tools to manage the lifecycle of Jules sessions.
jules_create_session
Create a new Jules coding session for a GitHub repository.
Important: Always use the repository's default branch (main or master) as the starting branch. Jules automatically creates its own feature branch for each session.
Parameters:
owner(string, required): GitHub repository owner.repo(string, required): GitHub repository name.branch(string, required): Starting branch name. Must be the default branch (mainormaster) - Jules will create its own feature branch.prompt(string, required): Task description for Jules.title(string, optional): Optional session title.requirePlanApproval(boolean, optional): Whether to require plan approval before execution.automationMode(enum, optional):"AUTO_CREATE_PR"(default — Jules auto-opens a PR on completion) or"AUTOMATION_MODE_UNSPECIFIED"(no PR). Note the Jules API itself defaults to no automation.workingBranch(string, optional): Branch Jules pushes its changes to. If omitted, Jules generates a branch name. Distinct from the starting branch.environmentVariablesEnabled(boolean, optional): Enables environment variables configured for this source within the session.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_create_session --arguments '{"owner": "my-org", "repo": "my-repo", "branch": "main", "prompt": "Refactor the login module", "requirePlanApproval": true}'jules_get_session
Fetch session metadata, state, and outputs.
Parameters:
session_id(string, required): The Jules session ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_get_session --arguments '{"session_id": "sessions/12345"}'jules_check_jules
Token-saving status check intended for periodic polling. Returns a one-character code to minimize response size and context usage:
Q: session needs clarification/approval (AWAITING_USER_FEEDBACKorAWAITING_PLAN_APPROVAL)C: session completedF: session failedN: no action required (in progress, unknown, or no session found)
You can provide either a specific session_id, or owner + repo (optionally branch) to resolve the latest session for the current project.
Parameters:
session_id(string, optional): Specific session to check.owner(string, optional): GitHub repository owner (required whensession_idis not provided).repo(string, optional): GitHub repository name (required whensession_idis not provided).branch(string, optional): Optional branch filter when checking by project.
Usage Example (project-scoped):
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_check_jules --arguments '{"owner": "mikbin", "repo": "jules-mcp", "branch": "main"}'Usage Example (session-scoped):
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_check_jules --arguments '{"session_id": "sessions/12345"}'jules_list_sessions
List Jules sessions. By default only non-archived sessions are returned (this matches the Jules API default). Set includeArchived or pass a raw AIP-160 filter to change this.
Parameters:
pageSize(number, optional): Maximum number of sessions to return.pageToken(string, optional): Page token for pagination.filter(string, optional): AIP-160 filter expression (e.g.'archived = true'). OverridesincludeArchivedwhen set.includeArchived(boolean, optional): If true, includes archived sessions (sets the filter to'archived = true OR archived = false'unlessfilteris also given).
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_list_sessions --arguments '{"pageSize": 10}'jules_delete_session
Delete a Jules session.
Parameters:
session_id(string, required): The Jules session ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_delete_session --arguments '{"session_id": "sessions/12345"}'jules_archive_session
Archive a Jules session. Archived sessions are hidden from the default session list (the API list defaults to non-archived only). Use jules_unarchive_session to restore.
Parameters:
session_id(string, required): The Jules session ID to archive.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_archive_session --arguments '{"session_id": "sessions/12345"}'jules_unarchive_session
Restore an archived Jules session so it reappears in the default session list.
Parameters:
session_id(string, required): The Jules session ID to unarchive.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_unarchive_session --arguments '{"session_id": "sessions/12345"}'jules_send_message
Send a clarification or instruction to a Jules session.
Parameters:
session_id(string, required): The Jules session ID.message(string, required): Message text to send.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_send_message --arguments '{"session_id": "sessions/12345", "message": "Please make sure to also update the unit tests."}'jules_approve_plan
Approve the plan for a session awaiting plan approval.
Parameters:
session_id(string, required): The Jules session ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_approve_plan --arguments '{"session_id": "sessions/12345"}'jules_list_activities
List activities for a Jules session.
Parameters:
session_id(string, required): The Jules session ID.pageSize(number, optional): Maximum number of activities to return.pageToken(string, optional): Page token for pagination.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_list_activities --arguments '{"session_id": "sessions/12345", "pageSize": 5}'jules_get_activity
Get a single activity by ID for a Jules session.
Parameters:
session_id(string, required): The Jules session ID.activity_id(string, required): The activity ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_get_activity --arguments '{"session_id": "sessions/12345", "activity_id": "activities/67890"}'jules_list_sources
List available sources (GitHub repositories).
Parameters:
pageSize(number, optional): Maximum number of sources to return.pageToken(string, optional): Page token for pagination.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_list_sources --arguments '{}'jules_get_source
Get details for a specific source.
Parameters:
source_id(string, required): The source ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_get_source --arguments '{"source_id": "sources/github/my-org/my-repo"}'jules_extract_pr_from_session
Extract pull request and/or change set information from a completed Jules session's outputs.
Returns the full pull request (url, title, description, baseRef, headRef) when AUTO_CREATE_PR was used, plus the change set (changeSet.source, changeSet.gitPatch.baseCommitId, unidiffPatch, suggestedCommitMessage) when present. Sessions that produced a git patch but no PR (e.g. automationMode disabled) still return their changeSet and suggested commit message. Very large unidiff patches are truncated (with unidiffTruncated and unidiffOriginalLength reported). Also includes sessionUrl when the API provides one.
If neither a pull request nor a change set is present, returns an actionable error message explaining the likely causes (session still running, no changes produced, or automation disabled).
Parameters:
session_id(string, required): The completed Jules session ID.
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_extract_pr_from_session --arguments '{"session_id": "sessions/12345"}'jules_wait
Pause execution for a specified number of seconds (max 600). Use between polling calls to conserve context window tokens instead of requiring a separate sleep MCP server.
Parameters:
seconds(number, required): Duration to wait in seconds (max 600).
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_wait --arguments '{"seconds": 120}'jules_monitor_session
Monitor a Jules session with real-time MCP progress notifications. Polls the session until it reaches a terminal state (COMPLETED or FAILED), sending notifications/progress messages back to the client with the latest activity description. If the session enters AWAITING_USER_FEEDBACK, the tool returns early so the caller can respond with jules_approve_plan or jules_send_message and then resume monitoring.
Parameters:
session_id(string, required): The Jules session ID to monitor.poll_interval_seconds(number, optional): Polling interval in seconds (default: 60, max: 300).
Usage Example:
npm run mcp-client -- --command node build/mcp-server/jules_mcp_server.js --tool jules_monitor_session --arguments '{"session_id": "sessions/12345", "poll_interval_seconds": 10}'Note: Progress notifications require a client that supports the MCP
notifications/progressmethod (most MCP-compatible IDEs do). The notifications include amessagefield with the current session state and latest activity description, allowing the client to display real-time status updates without consuming additional context window tokens.
Configuration & Environment Variables
Environment Variables
Variable | Required | Description |
| No* | API key for Jules API authentication. |
| No | Base URL for Jules API (default: https://jules.googleapis.com/v1alpha) |
| No | Path to config.json (default: config.json) |
*Required if not provided via mcp_config.json.
MCP Configuration File (Recommended)
Jules MCP can automatically discover your API key from standard MCP configuration files used by tools like Antigravity or Cline. It looks for the JULES_API_KEY in the env section of the jules-mcp-server entry in:
~/.gemini/antigravity/mcp_config.json~/.cline/mcp_config.json
Example mcp_config.json entry:
{
"mcpServers": {
"jules-mcp-server": {
"command": "node",
"args": ["/path/to/jules-mcp/build/mcp-server/jules_mcp_server.js"],
"env": {
"JULES_API_KEY": "your-api-key-here"
}
}
}
}JSON Configuration
Shared configuration for the background processes is stored in config.json. See the file for all available settings:
{
"jobs_path": "jobs.jsonl",
"events_path": "events.jsonl",
"monitor_state_path": ".monitor_state.json",
"watcher_state_path": ".watcher_state.json",
"monitor_poll_seconds": 45,
"watcher_poll_seconds": 1,
"stuck_minutes": 20,
"api_base": "https://jules.googleapis.com/v1alpha",
"mcp_command": ["node", "build/mcp-server/jules_mcp_server.js"],
"event_command": ["node", "build/scripts/event_handler.js"],
"auto_approve_plans": false
}Configuration Details:
auto_approve_plans(boolean): Iftrue, theevent_handlerwill automatically calljules_approve_planwhenever a session enters theAWAITING_USER_FEEDBACKstate for a plan approval.mcp_command(string[]): Required byjules_monitor. The monitor uses this command to invoke MCP tooljules_check_julesfor all periodic polling checks.
Testing
Run the test suite with Vitest:
npm testProject Structure
jules-mcp/
├── README.md # This file
├── config.json # Shared configuration
├── jobs.jsonl # Active jobs registry
├── events.jsonl # Actionable event queue
├── docs/
│ └── architecture.md # Detailed architecture documentation
├── mcp-server/
│ ├── jules_mcp_server.ts # MCP server implementation
│ └── README.md # MCP server docs
├── src/
│ ├── mcp_client.ts # Generic MCP client (raw tool invocation)
│ └── utils.ts # Shared utilities (e.g. formatTimestamp)
├── scripts/
│ ├── jules_cli.ts # Friendly CLI wrapper (npm run jules)
│ ├── jules_monitor.ts # Background poller
│ ├── jules_event_watcher.ts # Event queue watcher
│ └── event_handler.ts # Event handler
└── tests/
├── mcp_server.test.ts # MCP server tests
├── monitor.test.ts # Monitor tests
├── event_handler.test.ts # Event handler tests
└── utils.test.ts # Utility testsIntegration with AI Coding Tools
After building the project (npm run build), you can use the Jules MCP server with any AI coding tool that supports the MCP stdio protocol (such as Amp, Cline, Kilo Code, Windsurf, etc.).
For AI agents and easier discovery, see llms-installation.md.
Prerequisites
Run
npm run buildin the project root directoryHave your
JULES_API_KEYready (get it from jules.google.com/settings)
Configure the server with standard stdio transport:
Command:
nodeArgs:
/absolute/path/to/jules-mcp/build/mcp-server/jules_mcp_server.jsEnv:
JULES_API_KEY=<your-token>
Amp (VS Code Extension)
Add the following to your VS Code settings.json under amp.mcpServers:
{
"amp.mcpServers": {
"jules-mcp": {
"command": "node",
"args": ["/absolute/path/to/jules-mcp/build/mcp-server/jules_mcp_server.js"],
"env": {
"JULES_API_KEY": "<YOUR_JULES_API_KEY>"
}
}
}
}Alternatively, install globally via npx (no need to clone the repo):
{
"amp.mcpServers": {
"jules-mcp": {
"command": "npx",
"args": ["-y", "jules-mcp-ts"],
"env": {
"JULES_API_KEY": "<YOUR_JULES_API_KEY>"
}
}
}
}Reload the VS Code window after updating settings for Amp to pick up the new MCP server.
Agent Discovery & API Visibility
When the Jules MCP server is installed as an MCP server for tools such as Cline, Kilo Code, Amp, or Windsurf, those agents do not embed any Jules API credentials. Instead they:
Look for a standard MCP configuration file (
~/.gemini/antigravity/mcp_config.jsonor~/.cline/mcp_config.json).If the file contains an entry for
jules-mcp-server, theenvsection is merged into the process environment, exposingJULES_API_KEYand optionallyJULES_API_BASE.If no config file is found, the agents fall back to the environment variables
JULES_API_KEY/JULES_API_BASEthat you export in your shell before launching the server.
Because the credentials are supplied at runtime, they are never baked into the production bundle (build/…). The bundle only contains the compiled JavaScript code that talks to the Jules API; the actual API key lives outside the repository and is therefore safe to share the built artifact without leaking secrets.
Visibility
Inside the repository – the README and
config.jsondocument the required environment variables and the optionalauto_approve_plansflag.Outside the repository – any process that runs the MCP server (including third‑party agents) can discover the credentials via the MCP config mechanism described above. No additional network request is needed; the key is read locally before the server starts.
This design ensures that the API information is discoverable by any MCP‑compatible client while remaining private to the host environment.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/MikBin/jules-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server