Skip to main content
Glama

Jules MCP Server

License: MIT TypeScript Node.js MCP

A production-ready Model Context Protocol (MCP) server for the Google Jules API, enabling autonomous coding tasks and scheduling directly from AI assistants like Claude.

⚠️ DISCLAIMER: This is an independent, open-source project and is NOT officially created, maintained, or endorsed by Google. This server is a community-driven integration with the public Jules API. Use at your own risk. For official Jules documentation, visit jules.google.

🌟 Star This Repository

If you find this useful, please star ⭐ the repository to help others discover it!

Related MCP server: Jules MCP Server

Overview

This MCP server bridges the Google Jules coding agent with AI assistants, allowing you to:

  • Create coding tasks - Delegate bug fixes, refactoring, tests, and features to Jules

  • Schedule recurring tasks - Set up automated weekly/daily maintenance (dependency updates, security audits, etc.)

  • Monitor progress - Track session states and review generated plans

  • Approve plans - Human-in-the-loop control before code changes

  • Manage workflows - Send feedback and iterate on Jules's work

Architecture: The "Thick Server" Pattern

Since the Jules API v1alpha is stateless (no native scheduling endpoints), this server implements a local scheduling engine:

  • Persistent Storage: Schedules stored in ~/.jules-mcp/schedules.json

  • Cron Engine: Uses node-schedule for reliable task execution

  • Survives Restarts: Schedules are rehydrated on server startup

  • Autonomous Execution: Scheduled tasks run even without active IDE sessions

Installation

Prerequisites

  • Node.js 18.0.0 or higher

  • Jules API Key - Generate at jules.google/settings

  • GitHub Repositories - Connect repos to Jules via the web UI first

Setup

# Clone or download this repository
cd jules-mcp

# Install dependencies
npm install

# Build TypeScript
npm run build

# Set your API key
export JULES_API_KEY="your-key-here"

# Test the server
npm start

Quick smoke test (MCP stdio)

After building and setting JULES_API_KEY, you can validate the server end-to-end:

npm run mcp:smoke

Expected output (with a valid key):

  • Lists 6 tools, 5 prompts, and the 4 core resources

  • Attempts to read a fake session ID and reports a Jules 404 (proves real API calls work)

  • Attempts a tool call with dummy data and reports the API error without crashing

# Install globally
npm install -g

# Now available as: jules-mcp
jules-mcp

Configuration

Environment Variables

Create a .env file or set these in your shell:

# Required
JULES_API_KEY=your_jules_api_key_here

# Optional - Security allowlist (comma-separated repo names)
# If set, only these repos can be modified
JULES_ALLOWED_REPOS=owner/repo1,owner/repo2

# Optional - Default branch
JULES_DEFAULT_BRANCH=main

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "jules": {
      "command": "node",
      "args": ["/path/to/jules-mcp/dist/index.js"],
      "env": {
        "JULES_API_KEY": "your-key-here"
      }
    }
  }
}

On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

VS Code / Cursor Configuration

For Cursor or VS Code with MCP support:

{
  "mcp.servers": {
    "jules": {
      "command": "jules-mcp",
      "env": {
        "JULES_API_KEY": "your-key-here"
      }
    }
  }
}

Usage

Once configured, your AI assistant can use Jules through natural language:

Creating Immediate Tasks

"Use Jules to add unit tests for the authentication module in my-app-backend repository"

The assistant will:

  1. Check jules://sources to find the repository

  2. Call create_coding_task tool with appropriate prompt

  3. Return the session ID for monitoring

Scheduling Recurring Tasks

"Schedule Jules to update dependencies every Monday at 9 AM in my-app-backend"

The assistant will:

  1. Call schedule_recurring_task with cron "0 9 * * 1"

  2. Save the schedule to ~/.jules-mcp/schedules.json

  3. Confirm the next execution time

Monitoring Progress

"Check the status of Jules session abc123"

The assistant will:

  1. Call get_session_status or read jules://sessions/abc123/full

  2. Show current state (PLANNING, IN_PROGRESS, COMPLETED, etc.)

  3. Provide next steps based on state

Reviewing and Approving Plans

"Show me Jules's plan for session abc123 and approve it"

The assistant will:

  1. Read jules://sessions/abc123/full to get the plan

  2. Display the plan steps to you

  3. Call manage_session with action=approve_plan after your confirmation

Available Resources

Resources are read-only context that the AI can access:

URI

Description

jules://sources

Connected GitHub repositories

jules://sessions/list

Recent Jules sessions

jules://sessions/{id}/full

Complete session details with activities

jules://schedules

Active scheduled tasks

jules://schedules/history

Execution history

Available Tools

Tools are actions the AI can execute:

create_coding_task

Creates an immediate Jules coding session.

Parameters:

  • prompt (required) - Natural language task instruction

  • source (required) - Repository (format: sources/github/owner/repo)

  • branch (optional) - Target branch (default: main)

  • auto_create_pr (optional) - Auto-create PR (default: true)

  • require_plan_approval (optional) - Pause for review (default: false)

  • title (optional) - Session title

Returns: Session ID and monitoring URL

manage_session

Manage active sessions (approve plans, send feedback).

Parameters:

  • session_id (required)

  • action (required) - "approve_plan" or "send_message"

  • message (optional) - Required for send_message

get_session_status

Check session status and get next steps.

Parameters:

  • session_id (required)

schedule_recurring_task

Schedule a task to run on a cron schedule.

Parameters:

  • task_name (required) - Unique schedule identifier

  • cron_expression (required) - Standard cron format

  • prompt (required) - Task instruction

  • source (required) - Repository resource name

  • branch, auto_create_pr, require_plan_approval, timezone (optional)

Cron Examples:

  • "0 9 * * 1" - Every Monday at 9 AM

  • "0 2 * * *" - Every day at 2 AM

  • "0 0 1 * *" - First day of each month at midnight

list_schedules

List all active scheduled tasks with next run times.

delete_schedule

Remove a scheduled task.

Parameters:

  • task_name (required)

Available Prompts

Prompts are templates that guide best practices:

  • refactor_module - Guided refactoring workflow

  • setup_weekly_maintenance - Automated maintenance setup

  • audit_security - Comprehensive security audit

  • fix_failing_tests - Test failure resolution

  • update_dependencies - Dependency update with breaking change handling

Security Considerations

API Key Security

  • Never commit your JULES_API_KEY to version control

  • Store in environment variables or secure secrets manager

  • The API key grants write access to connected repositories

Repository Allowlist

Use JULES_ALLOWED_REPOS to restrict which repositories can be modified:

export JULES_ALLOWED_REPOS="myorg/safe-repo,myorg/test-repo"

This prevents accidental modifications to production or sensitive repos.

Plan Approval Workflow

For critical repositories, always set require_plan_approval: true:

"Create a task but require plan approval before any code changes"

This ensures human review before Jules modifies code.

Audit Logging

All scheduled task executions are logged to jules://schedules/history. Review this regularly to audit autonomous activities.

Troubleshooting

"JULES_API_KEY environment variable is required"

Set your API key:

export JULES_API_KEY="your-key-here"

"Repository not found" error

  1. Check jules://sources resource to see connected repos

  2. Ensure the GitHub app is installed on the repository

  3. Use the exact resource name format: sources/github/owner/repo

Schedules not persisting

Check that ~/.jules-mcp/schedules.json exists and is writable.

TypeScript compilation errors

npm run typecheck

Development

Project Structure

src/
  types/          # TypeScript type definitions
    jules-api.ts  # Jules API types
    schedule.ts   # Schedule types
  api/            # API client layer
    jules-client.ts
  storage/        # Persistence layer
    schedule-store.ts
  scheduler/      # Cron engine
    cron-engine.ts
  mcp/            # MCP protocol layer
    resources.ts  # Resources implementation
    tools.ts      # Tools implementation
    prompts.ts    # Prompt templates
  index.ts        # Main entry point

Build Commands

npm run build      # Compile TypeScript
npm run dev        # Development mode with tsx
npm run typecheck  # Type checking only

API Endpoints Covered

This server provides complete coverage of the Jules v1alpha API:

Endpoint

Method

MCP Mapping

/sources

GET

Resource: jules://sources

/sources/{name}

GET

Included in full session resource

/sessions

POST

Tool: create_coding_task

/sessions

GET

Resource: jules://sessions/list

/sessions/{id}

GET

Tool: get_session_status

/sessions/{id}:approvePlan

POST

Tool: manage_session (approve_plan)

/sessions/{id}:sendMessage

POST

Tool: manage_session (send_message)

/sessions/{id}/activities

GET

Resource: jules://sessions/{id}/full

Additional Capabilities (Beyond API)

  • Local scheduling - Cron-based task execution

  • Schedule persistence - Survives server restarts

  • Execution history - Audit trail for scheduled tasks

Future Roadmap

When Jules API adds native scheduling:

  • The schedule_recurring_task tool will migrate from local cron to API calls

  • Existing local schedules can be migrated automatically

  • The MCP tool interface remains unchanged for backward compatibility

Resources

License

MIT

Contributing

This is an open-source implementation. Contributions welcome for:

  • Additional prompt templates

  • Enhanced error handling

  • Webhook support (when Jules API adds it)

  • Advanced scheduling features (conditional execution, dependency chains)

Available Tools

6 tools
create_coding_taskA

Creates a new Jules coding session. Returns immediately with a session ID. Monitor progress via jules://sessions/{id}/full resource.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesNatural language instruction for the coding task
sourceYesRepository resource name (sources/github/owner/repo)
branchNoGit branch to base changes onmain
auto_create_prNoAutomatically create Pull Request upon completion
require_plan_approvalNoPause for manual plan review
titleNoOptional session title

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'Returns immediately with a session ID' and mentions monitoring via a resource, which adds useful context about asynchronous behavior. However, it lacks details on permissions, rate limits, error conditions, or what 'creates' entails (e.g., whether it modifies repositories immediately).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with zero waste: the first states the core purpose and immediate return, the second provides essential follow-up guidance. It is appropriately sized, front-loaded with the main action, and every sentence earns its place by adding value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (creation tool with 6 parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and async behavior but lacks details on prerequisites, error handling, or output structure. Without annotations or output schema, more context would be helpful for a creation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description adds no parameter-specific information beyond what the schema provides, such as clarifying relationships between parameters or usage examples. The baseline of 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Creates a new Jules coding session'), identifies the resource ('Jules coding session'), and distinguishes from siblings by focusing on creation rather than deletion, status checking, listing, management, or scheduling. The verb+resource combination is precise and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'manage_session' or 'schedule_recurring_task'. It mentions monitoring progress via a specific resource, but this is operational advice rather than usage context. There are no explicit when/when-not statements or named alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_scheduleC

Delete a scheduled task by name

ParametersJSON Schema
NameRequiredDescriptionDefault
task_nameYesSchedule name

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'Delete' implies a destructive mutation, but it doesn't specify whether this action is reversible, requires specific permissions, has side effects, or what happens on success/failure. This leaves significant gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It's appropriately sized and front-loaded, making it easy to understand at a glance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a destructive operation with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits, error handling, and what to expect after deletion, which are crucial for safe and effective use in this context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the parameter 'task_name' documented as 'Schedule name'. The description adds no additional meaning beyond this, such as format examples or constraints. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Delete') and the resource ('a scheduled task by name'), making the purpose unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'list_schedules' or 'schedule_recurring_task' in terms of function, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, such as whether it's for removing tasks after listing them with 'list_schedules' or as an alternative to modifying tasks. There's no mention of prerequisites, exclusions, or specific contexts for invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_session_statusC

Get the current status and state of a Jules session

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesSession ID

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves status and state, implying a read-only operation, but doesn't specify if it's safe, requires authentication, has rate limits, or what the return format looks like. This leaves significant gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to understand quickly with zero waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, no output schema, no annotations), the description is minimal but incomplete. It lacks details on behavioral traits, usage context, and output expectations, making it insufficient for an AI agent to fully understand how to invoke and interpret results without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with 'session_id' documented as 'Session ID'. The description doesn't add any meaning beyond this, such as format examples or context for the ID. With high schema coverage, the baseline score of 3 is appropriate as the schema handles the parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('current status and state of a Jules session'), making the purpose specific and understandable. However, it doesn't distinguish this tool from potential siblings like 'manage_session' or explain what 'status and state' entails, keeping it from a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'manage_session' or 'list_schedules', nor does it mention prerequisites or context for usage. It implies usage when session status is needed but lacks explicit instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_schedulesB

List all locally-managed scheduled tasks

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('List all') but doesn't describe return format, pagination, sorting, or potential side effects. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that clearly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded with the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what 'locally-managed' means, what format the list returns, or how the results are structured. Given the lack of structured data, more context is needed for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the input requirements. The description appropriately doesn't add parameter information, maintaining focus on the tool's purpose. A baseline of 4 is appropriate for zero-parameter tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List') and resource ('locally-managed scheduled tasks'), providing a specific purpose. However, it doesn't explicitly differentiate from sibling tools like 'schedule_recurring_task' or 'delete_schedule', which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_session_status' or 'manage_session'. It doesn't mention prerequisites, exclusions, or specific contexts for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

manage_sessionC

Manage an active Jules session: approve plans or send feedback

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesSession ID
actionYesAction to perform
messageNoMessage (required for send_message)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It mentions actions ('approve plans or send feedback') but lacks behavioral details such as permission requirements, side effects (e.g., does approval finalize plans?), response format, or error conditions. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It avoids redundancy and wastes no words, though it could be slightly more structured (e.g., separating actions). Every part earns its place by specifying the resource and actions.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (mutation with 3 parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like what happens after approval, error handling, or return values. For a tool that modifies sessions, more context is needed to ensure safe and correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents parameters (session_id, action, message). The description adds no parameter-specific semantics beyond implying 'message' is used for 'send_message'. Baseline is 3 since the schema does the heavy lifting, but the description doesn't compensate with additional context like format examples or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('manage') and resource ('active Jules session'), with specific actions listed ('approve plans or send feedback'). It distinguishes from siblings like 'get_session_status' (read-only) and 'delete_schedule' (different resource), though it doesn't explicitly contrast them. The purpose is specific but could be more precise about what 'manage' entails beyond the two actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an active session), exclusions (e.g., not for creating sessions), or comparisons to siblings like 'get_session_status' for checking status. Usage is implied by the actions but lacks explicit context or decision criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

schedule_recurring_taskA

Schedule a Jules task to run automatically on a cron schedule. The server manages execution even when offline.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_nameYesUnique name for this schedule
cron_expressionYesCron expression (e.g., "0 9 * * 1" for Mondays at 9 AM)
promptYesTask instruction
sourceYesRepository resource name
branchNomain
auto_create_prNo
require_plan_approvalNo
timezoneNoTimezone for cron

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses useful behavioral traits: the server manages execution even when offline, which is valuable context. However, it doesn't mention permissions needed, whether schedules can be edited, error handling, or what happens on schedule conflicts, leaving gaps for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose, no wasted words. Every sentence earns its place: the first defines the tool, the second adds important behavioral context about offline execution.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 8 parameters, 63% schema coverage, no annotations, and no output schema, the description is incomplete. It covers the basic purpose and offline execution but lacks details on permissions, error cases, return values, or how it differs from siblings beyond implicit distinctions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 63%, so the description must compensate but doesn't add parameter-specific details beyond the schema. It mentions 'cron schedule' which aligns with cron_expression, but doesn't explain relationships between parameters (e.g., how source and branch interact) or provide additional context. Baseline 3 is appropriate as the schema does most of the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Schedule a Jules task to run automatically'), identifies the resource ('task'), and distinguishes it from siblings by specifying it's for recurring tasks on a cron schedule, unlike one-time tasks (create_coding_task) or schedule management (delete_schedule, list_schedules).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('to run automatically on a cron schedule') and implicitly distinguishes it from create_coding_task (which likely creates one-time tasks). However, it doesn't explicitly state when NOT to use it or mention alternatives like list_schedules for viewing existing schedules.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: create_coding_task initiates sessions, get_session_status monitors them, manage_session controls them, while list_schedules, schedule_recurring_task, and delete_schedule handle scheduling separately. The descriptions reinforce these boundaries, making misselection unlikely.

Naming Consistency4/5

The tools follow a consistent verb_noun pattern with snake_case throughout, such as create_coding_task and list_schedules. However, manage_session deviates slightly by using a more generic verb compared to the others, but overall the naming is predictable and readable.

Tool Count5/5

With 6 tools, the server is well-scoped for managing Jules coding sessions and scheduled tasks. Each tool earns its place by covering distinct aspects like creation, monitoring, management, and scheduling, without being overly sparse or bloated.

Completeness4/5

The tool set provides solid coverage for session lifecycle (create, status, manage) and scheduling (list, create, delete), with no dead ends. A minor gap exists in lacking a direct tool to list or delete sessions, but agents can infer status from get_session_status and deletion might be handled implicitly.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • -
    license
    A
    quality
    Not graded
    maintenance
    Enables automation of Google Jules AI coding assistant through task creation, code review automation, repository management, and AI-powered development workflows. Supports multiple session modes including cloud deployment with persistent authentication.
    13
  • A
    license
    Not graded
    quality
    F
    maintenance
    Connects AI coding assistants to the Jules API for autonomous coding sessions. Enables creating and managing coding sessions, GitHub integration, plan approval workflows, and real-time activity tracking directly from your IDE.
    15
    6
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    Enables LLM applications to interact with Google's Jules AI coding assistant to manage repositories, coding sessions, and pull requests. It allows users to programmatically create tasks, approve plans, and communicate with the assistant during active coding sessions.
    9

Latest Blog Posts

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/chrisgreenx-ctrl/jules-mcp-server-smithery-test'

If you have feedback or need assistance with the MCP directory API, please join our Discord server