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

@beachio/gleo-mcp

v1.0.0

Published

MCP bridge for connecting Claude Desktop, Cursor, and other MCP clients to the Gleo API

Downloads

57

Readme

@beachio/gleo-mcp

MCP bridge for connecting Claude Desktop, Cursor, and other MCP-compatible clients to the Gleo API.

What it does

This bridge runs locally as a stdio process. Your MCP client (Claude Desktop, Cursor, etc.) launches it, and it forwards JSON-RPC calls to the Gleo HTTP API using your personal API token.

Requirements

  • Node.js 18 or later
  • A Gleo account with an MCP token (see Setup below)

Setup

1. Generate an MCP token

  1. Sign in to Gleo and go to Settings > Developer
  2. Under MCP Tokens, click Create new token
  3. Give it a label (e.g. "My Cursor Setup") and click Create
  4. Copy the token — it is only shown once

2. Configure your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "gleo": {
      "command": "npx",
      "args": ["-y", "@beachio/gleo-mcp"],
      "env": {
        "GLEO_TOKEN": "gleo_mcp_your_token_here"
      }
    }
  }
}

Restart Claude Desktop after saving.

Cursor

Edit .cursor/mcp.json in your project root, or the global Cursor MCP config:

{
  "mcpServers": {
    "gleo": {
      "command": "npx",
      "args": ["-y", "@beachio/gleo-mcp"],
      "env": {
        "GLEO_TOKEN": "gleo_mcp_your_token_here"
      }
    }
  }
}

Global install (optional)

If you prefer not to use npx each time:

npm install -g @beachio/gleo-mcp

Then use "command": "gleo-mcp" instead of "command": "npx" / "args": ["-y", "@beachio/gleo-mcp"].

Environment variables

| Variable | Required | Default | Description | |---|---|---|---| | GLEO_TOKEN | Yes | — | Your MCP API token from Gleo Settings | | GLEO_API_URL | No | https://api.gleo.com/mcp | Override the API endpoint |

Available tools

The bridge exposes all Gleo MCP tools, including:

  • get_artifact, search_artifacts, create_artifact, semantic_search_artifacts
  • list_sessions, get_session, create_session
  • list_playbooks, get_playbook, create_playbook_session
  • list_playbook_templates, get_playbook_template
  • list_playbook_questions, create_playbook_question, add_playbook_question_answer
  • list_playbook_tasks, create_playbook_task
  • create_agenda_item, create_agenda_items, update_agenda_item, delete_agenda_item
  • create_prep_activity, create_prep_activities
  • list_playbook_artifacts, create_playbook_artifact
  • link_artifact_to_source
  • list_playbook_question_tags, attach_question_tag, detach_question_tag
  • toggle_playbook_question_reaction

Troubleshooting

"GLEO_TOKEN environment variable is required" — set the GLEO_TOKEN env var in your MCP client config.

"Invalid token" — verify the token was copied correctly and has not been deleted or regenerated in Gleo Settings.

Timeout errors — check your network connection to api.gleo.com.

License

MIT