AgentStack
MCP unreviewed MIT Self-run

Juleson

mcp-samyrai-juleson · by SamyRai

Go CLI and MCP server for operating Google's Jules coding-agent sessions.

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add mcp-samyrai-juleson

Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Juleson? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Juleson

Juleson is a Go command-line tool and MCP server for operating Google's Jules coding-agent sessions. It provides local commands for source discovery, session management, Jules-created pull request review, template management, and development tasks. The reusable Jules REST API client is available as github.com/SamyRai/go-jules.

Release assets install two executable names:

  • juleson: user-facing CLI.
  • jsn: short alias for the same CLI.

The repository also contains builder, an internal build/test/release helper. Juleson keeps the Jules API, operator workflow, and MCP server in this module; general AI orchestration belongs outside this repository.

Requirements

  • Go 1.25.11 or newer for source builds. Release builds use Go 1.26.4.
  • A Jules API key for commands that call the Jules API.
  • A GitHub token only when inspecting or merging Jules-created pull requests.

Install

Linux and macOS:

curl -L https://github.com/SamyRai/juleson/releases/latest/download/install.sh | bash

Windows PowerShell:

irm https://github.com/SamyRai/juleson/releases/latest/download/install.ps1 | iex

Install from source:

go install github.com/SamyRai/juleson/cmd/juleson@latest

Build locally:

go build -o bin/builder ./cmd/builder
./bin/builder build

See [Installation](docs/INSTALLATION_GUIDE.md) for platform-specific options.

Configure

Run the setup wizard:

jsn setup

For non-interactive setup, set environment variables first. The setup command reads them and writes the resulting values to configs/juleson.yaml:

export JULES_API_KEY="..."
export GITHUB_TOKEN="..."
jsn setup --non-interactive

Juleson looks for juleson.yaml in ./configs, the current directory, $HOME, and /etc/juleson. It also loads .env, $HOME/.env, $HOME/.juleson.env, and /etc/juleson/.env. JULES_API_KEY is accepted directly from the environment. GitHub configuration is used only for Jules-created pull request context.

See [Configuration](docs/CONFIGURATION.md) and [Setup](docs/SETUP_GUIDE.md).

Common Commands

The examples below use jsn for brevity, but juleson works identically.

# Inspect available commands
jsn --help

# Work with Jules sources and sessions
jsn sources list
jsn sessions list
jsn sessions create sources/github/owner/repo "Fix failing tests"
jsn sessions create . --prompt-file task.md
jsn sessions create --no-source "Draft a migration plan"
jsn sessions batch sources/github/owner/repo task.md --parallel 3 --group-title "Fix CI"
jsn sessions watch SESSION_ID --follow-activities --cursor-output .juleson.cursor
jsn sessions approve SESSION_ID
jsn sessions artifacts list SESSION_ID
jsn sessions outputs SESSION_ID
jsn sessions preview SESSION_ID
jsn sessions apply SESSION_ID ./path/to/project --activity-id ACTIVITY_ID --artifact-index 0
jsn sessions apply SESSION_ID ./path/to/project --confirm
jsn official remote pull SESSION_ID

# Manage templates
jsn template list
jsn template show test-generation

# Jules-created pull request context
jsn pr list

# MCP server
jsn mcp serve --version
jsn mcp serve

# Development workflow for this repository
jsn dev build --all
jsn dev test --short
jsn dev check

See [CLI Reference](docs/CLI_REFERENCE.md) for the command map and flags.

MCP Server

Juleson serves MCP over stdio:

jsn mcp serve

Use gh, GitHub's CLI, or the official GitHub MCP server for general GitHub and Actions operations.

Documentation

  • [Documentation Index](docs/README.md)
  • [CLI Reference](docs/CLI_REFERENCE.md)
  • [Installation](docs/INSTALLATION_GUIDE.md)
  • [Setup](docs/SETUP_GUIDE.md)
  • [Configuration](docs/CONFIGURATION.md)
  • [Jules API Notes](docs/JULES_API.md)
  • [Templates](docs/TEMPLATES.md)
  • [GitHub Integration](docs/GITHUB_INTEGRATION.md)
  • [Event System](docs/EVENTSYSTEMARCHITECTURE.md)
  • [Testing](docs/TESTING_GUIDE.md)
  • [Roadmap](docs/ROADMAP.md)
  • [Changelog](docs/CHANGELOG.md)

The same documentation set is published to the project Wiki for GitHub-native navigation. The repository docs/ directory remains the source of truth.

Development

go mod download
go test ./...
go run ./cmd/juleson --help

Go applications can import the SDK package directly:

import jules "github.com/SamyRai/go-jules"

client := jules.NewClient(
    "api-key",
    jules.WithBaseURL("https://jules.googleapis.com/v1alpha"),
    jules.WithRetryAttempts(3),
)

The SDK uses typed Jules states and time.Time timestamps, follows documented session/source/activity endpoints, and keeps local artifact writing or patch application in internal app code.

The CI workflow runs formatting, module consistency, tests, linting, security scans, and builds on Linux, macOS, and Windows. Markdown-only changes are ignored by CI, so documentation-only changes should be checked locally with markdownlint '**/*.md'.

License

MIT. See [LICENSE](LICENSE).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.