npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fre4x/jules

v1.0.43

Published

MCP server for Jules API integration

Downloads

1,670

Readme

jules — The Coding Agent Bridge

Autonomous code changes, PR generation, and session management. The swarm's hands.

Part of FRE4X-B1TE — a monorepo of MCP servers built for autonomous agents.

Google Jules is an autonomous coding agent. This B1TE exposes its full API as MCP tools — so your agent can spawn Jules sessions, approve plans, and get PRs merged without a human in the loop.

Tools

| Tool | What it does | |------|-------------| | jules_list_sources | List connected GitHub repos available as sources | | jules_create_session | Start a new Jules coding session with a prompt, source, and optional config | | jules_list_sessions | List all sessions and their status (e.g. PR links) | | jules_approve_plan | Approve a session's execution plan (when requirePlanApproval=true) |

jules_create_session parameters

| Parameter | Type | Description | |-----------|------|-------------| | source | string | Source resource name, e.g. sources/github/owner/repo | | title | string | Session title | | prompt | string | Task description for Jules | | startingBranch | string | Branch to start from (default: main) | | automationMode | string | AUTO_CREATE_PR or NONE (default: NONE) | | requirePlanApproval | boolean | If true, pause for jules_approve_plan before executing (default: false) |

Requirements

A Jules API key — set as JULES_API_KEY.

Mock Mode

Run without an API key (returns fixture data of identical shape):

MOCK=true npx @fre4x/jules

Deploy

{
  "mcpServers": {
    "jules": {
      "command": "npx",
      "args": ["-y", "@fre4x/jules"],
      "env": {
        "JULES_API_KEY": "your_api_key_here"
      }
    }
  }
}

Development

npm install
npm run dev      # tsx, no build
npm run build    # esbuild → dist/
npm test         # vitest unit tests

License

MIT — WE ARE THE FRE4X.