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

glove-mcp

v1.2.0

Published

Model Context Protocol (MCP) integration for the Glove agent framework

Readme

glove-mcp

Model Context Protocol integration for the Glove agent framework. Bridge any MCP server's tools into a Glove agent and let the model discover and activate them on demand.

Install

pnpm add glove-mcp

Requires glove-core as a peer. Streamable HTTP and stdio transports are supported.

Minimal usage

Wire a static catalogue of MCP servers into a Glove instance via mountMcp. The auth seam is McpAdapter.getAccessToken(id) -> string — return a bearer token, however you obtained it. For servers that don't take a bearer token, implement getAuthHeaders(id) -> Record<string, string> instead (see Auth model).

import { Glove } from "glove-core/glove";
import { mountMcp } from "glove-mcp";
import type { McpAdapter, McpCatalogueEntry } from "glove-mcp";

const ENTRIES: McpCatalogueEntry[] = [
  {
    id: "notion",
    name: "Notion",
    description: "Search, read, and edit pages in a Notion workspace.",
    url: "https://mcp.notion.com/mcp",
    tags: ["docs", "notes", "wiki"],
  },
];

class MyAdapter implements McpAdapter {
  identifier: string;
  private active = new Set<string>();
  constructor(id: string) { this.identifier = id; }

  async getActive() { return [...this.active]; }
  async activate(id: string) { this.active.add(id); }
  async deactivate(id: string) { this.active.delete(id); }

  async getAccessToken(id: string) {
    // Return a bearer string from wherever you persisted it.
    return process.env[`${id.toUpperCase()}_TOKEN`]!;
  }
}

const glove = new Glove({ /* model, store, displayManager, ... */ });
const runnable = glove.build();

await mountMcp(runnable, {
  adapter: new MyAdapter(sessionId),
  entries: ENTRIES,
  clientInfo: { name: "my-app", version: "1.0.0" },
});

mountMcp reloads any servers the adapter reports as already active (so an existing conversation rehydrates its tools on session boot) and folds in discovermcp — a discovery subagent the model uses to activate new MCPs from the catalogue mid-conversation.

stdio servers

Use an explicit transport for a local MCP process. Keep credential values out of the catalogue; the adapter resolves them only when that server is spawned:

const ENTRIES: McpCatalogueEntry[] = [{
  id: "project",
  name: "Project tools",
  description: "Approved local project operations.",
  transport: {
    kind: "stdio",
    command: "/opt/agents/project-mcp",
    args: ["--stdio"],
    cwd: "/srv/project",
  },
  connectTimeoutMs: 15_000,
  requestTimeoutMs: 60_000,
  idleTimeoutMs: 15 * 60_000,
  maxLifetimeMs: 24 * 60 * 60_000,
}];

class MyAdapter implements McpAdapter {
  // getActive / activate / deactivate …
  async getStdioEnvironment(id: string) {
    if (id !== "project") return {};
    return { PROJECT_TOKEN: await vault.read("project-mcp") };
  }
}

getStdioEnvironment is not called for HTTP entries, and HTTP auth methods are not called for stdio entries. In a data-driven host, map installation data to an allowlisted command profile rather than accepting arbitrary executables or shell arguments from users.

Every transport initialize/handshake is bounded by connectTimeoutMs (30 seconds by default), and every tools/resources/prompts operation by requestTimeoutMs (60 seconds by default). Invalid, fractional, or timer-overflowing values fail before a connection is attempted.

For memory-heavy stdio servers, idleTimeoutMs and maxLifetimeMs proactively close the child after inactivity or total age (0, the default, disables each limit). The next operation reopens it transparently and asks getStdioEnvironment for fresh values. Recycling never closes a connection with an operation in flight; concurrent operations hold independent leases.

Live tool registries

If an MCP server advertises tools.listChanged, every tool set mounted through mountMcp stays live. Glove debounces the server notification, re-lists through the same sanitizer and include/exclude filters, rebuilds wrappers and utility collision checks, then atomically swaps only that server's tools. A failed refresh leaves the previous working surface in place. This subscription also survives transparent stdio recycling.

The discovery subagent's deactivate(id) now performs the inverse operation in the running session: it updates adapter state, removes the provider-owned tools, unsubscribes from changes, and closes the connection. Other agent tools are not touched.

Selecting tools

A server often exposes more tools than one agent should receive. Use includeTools as a least-privilege allowlist and excludeTools for explicit denials. Both accept exact, un-namespaced names and shell-style globs (*, ?, [0-9]) as the server knows them. A non-empty allowlist is authoritative, which permits narrow exceptions to broad deny globs:

const ENTRIES: McpCatalogueEntry[] = [
  {
    id: "github",
    name: "GitHub",
    description: "Issues, PRs, repos.",
    url: "https://mcp.github.com/mcp",
    includeTools: ["list_*", "get_*", "create_issue"],
    excludeTools: ["*_secret", "delete_*", "transfer_*"], // never mounted
  },
];

Selection is applied at the connection, so it bubbles through every mount path from one place — the boot-time reload, the discovermcp subagent's activate, and any glove-scratchpad bridge (mcpResources / fnsFromMcp) built from the same connection all bridge exactly the filtered listing. A hidden tool never reaches the model, whichever surface it would have arrived on.

For catalogue-wide rules, pass filterTools to mountMcp — it runs after each entry's allow/deny rules:

await mountMcp(runnable, {
  adapter,
  entries: ENTRIES,
  // Drop every tool the server annotates as destructive, across all servers.
  filterTools: (tool, entry) => !tool.annotations?.destructiveHint,
});

Connecting directly (e.g. to feed a glove-scratchpad surface)? Set the same options on connectMcp and they apply to that connection's whole listing:

const conn = await connectMcp({
  namespace: "github",
  url: "https://mcp.github.com/mcp",
  includeTools: ["list_*", "get_*"],
  excludeTools: ["get_secret_*"],
  filterTools: (t) => !t.annotations?.destructiveHint,
});
// mcpResources(conn) / fnsFromMcp(conn) see only the selected tools.

Only the listing is filtered — conn.raw and a direct conn.callTool(name, …) can still address an unlisted server tool as advanced escape hatches. The typed callTool path continues to sanitize arguments and results; conn.raw does not.

All normal bridged results cross one defensive boundary before reaching the model: invisible Unicode TAG characters are removed from names, descriptions, schemas, arguments, and results while complete emoji tag flags remain intact. Safe vendor _meta values are surfaced with the result; MCP-reserved metadata namespaces are dropped. Use conn.raw only when you intentionally accept responsibility for those advanced, unsanitized protocol surfaces.

Resources and prompts

When a server advertises MCP resource or prompt capabilities, mountMcp adds four read-only, namespaced utility tools alongside its callable tools:

  • <server>__list_resources and <server>__read_resource
  • <server>__list_prompts and <server>__get_prompt

The utilities are capability-aware, so a tools-only server gets no empty wrappers. Disable either family per catalogue entry with resources: false or prompts: false. Resource content and prompt messages cross the same text and metadata sanitizer as ordinary tool results. If a server already exposes a callable tool with one of those utility names, the server's tool wins and the wrapper is not added.

Connection credential model

Three optional seams live on the adapter. For HTTP, getAccessToken returns a bearer value and getAuthHeaders returns a complete custom header map; custom headers take precedence. For stdio, getStdioEnvironment returns the child process environment values. Glove never acquires, refreshes, or persists any of them.

interface McpAdapter {
  identifier: string;
  getActive(): Promise<string[]>;
  activate(id: string): Promise<void>;
  deactivate(id: string): Promise<void>;
  getAccessToken?(id: string): Promise<string>;
  getAuthHeaders?(id: string): Promise<Record<string, string>>;
  getStdioEnvironment?(id: string): Promise<Record<string, string>>;
}
class ComposioAdapter implements McpAdapter {
  // ...getActive / activate / deactivate...
  async getAuthHeaders(id: string) {
    return { "x-api-key": process.env.COMPOSIO_API_KEY! };
  }
}

Both seams are called every time a connection is established (session boot + each fresh activation). Throwing causes the activation to fail gracefully — the model sees an error, the conversation continues.

For direct connectMcp calls, the matching helpers are bearer(tokenOrThunk) and headers(mapOrThunk):

import { connectMcp, headers } from "glove-mcp";

const conn = await connectMcp({
  namespace: "composio",
  url: "https://mcp.composio.dev/...",
  auth: headers({ "x-api-key": process.env.COMPOSIO_API_KEY! }),
});

When a token expires mid-call, the bridged tool returns:

{ status: "error", message: "auth_expired", data: null }

That's the contract. Watch for it in your subscriber / UI, refresh the token in your store, and the next connection picks up the new value. Token lifecycle (acquisition, refresh, persistence) is entirely the consumer's responsibility — glove-mcp only reads.

OAuth (opt-in via glove-mcp/oauth)

Consumers with static tokens (personal API keys, service accounts) skip this entirely. For the MCP authorization spec OAuth flow against hosted servers (Notion, Linear, Gmail, ...), the glove-mcp/oauth subpath ships a runner and two reference stores:

import { FsOAuthStore, runMcpOAuth } from "glove-mcp/oauth";

await runMcpOAuth({
  serverUrl: "https://mcp.notion.com/mcp",
  store: new FsOAuthStore(".mcp-oauth.json"),
  key: "notion",
});

The runner:

  1. Spins up a local HTTP listener on localhost:53683/callback.
  2. Drives the SDK's auth() — Dynamic Client Registration + PKCE.
  3. Opens the user's browser; waits for them to grant access.
  4. Exchanges the code for tokens; persists them via the store.
  5. Optionally verifies by listing tools.

For servers without DCR (e.g. Google's hosted MCP), pass preRegisteredClient: { client_id, client_secret } and a scope.

FsOAuthStore writes a single 0600 JSON file — fine for CLIs and local dev. MemoryOAuthStore for tests. In production, implement OAuthStore against your own DB; the interface is three methods (get, set, delete).

The adapter's getAccessToken then just reads from your store:

async getAccessToken(id: string) {
  const state = await STORE.get(id);
  if (state.tokens?.access_token) return state.tokens.access_token;
  throw new Error(`No token for "${id}". Run \`my-app auth ${id}\`.`);
}

Discovery

mountMcp always folds discovermcp — a subagent tool the model invokes when it suspects a useful MCP is sitting in the catalogue but isn't yet active. The subagent matches the user's request against entries' name / description / tags, calls activate(id) on the adapter, connects, and folds the bridged tools into the running Glove.

Three ambiguity policies via MountMcpConfig.ambiguityPolicy — pass as { type: "<policy>" }:

| Policy | Behavior | |--------|----------| | { type: "interactive" } | Subagent calls pushAndWait with an mcp_picker slot. Requires a renderer in your displayManager. Default for interactive Gloves. | | { type: "auto-pick-best" } | Subagent silently picks the highest-ranked match. No human in the loop. Default when glove.serverMode === true. | | { type: "defer-to-main" } | Subagent returns the candidate list as text and lets the main agent decide. |

Override the subagent's model or system prompt via subagentModel / subagentSystemPrompt if needed.

Tool namespacing

Bridged tools are exposed to the model as ${entry.id}__${tool.name} — a Notion search tool surfaces as notion__search. The __ separator is regex-safe across all model providers.

Server mode

new Glove({ serverMode: true, ... }) flips two defaults relevant to MCP:

  • Bridged tools default to requiresPermission: false (no human-in-the-loop gating). Tools annotated readOnlyHint: true are also unguarded; everything else still gates in interactive mode.
  • Discovery defaults to auto-pick-best.

Use it for headless agents — cron jobs, server-side automation, evals.

Production lift-and-shift

The reference CLIs in examples/mcp-cli/ are a single-user shape: FsOAuthStore, one bearer token, the OAuth dance run from a terminal. For a multi-user app, swap FsOAuthStore for a per-user OAuthStore against your DB, move the OAuth flow from a CLI into route handlers (GET /oauth/<id>/start calls runMcpOAuth, GET /oauth/<id>/callback finishes it), and refresh expired tokens however your stack does it. The agent code doesn't change — the relevant McpAdapter connection method remains the seam.

Key exports

  • mountMcp(runnable, config) — the canonical wiring point. Reloads active servers and folds discovermcp.
  • McpAdapter — the per-conversation interface consumers implement.
  • McpCatalogueEntry — static description of an HTTP or stdio MCP server the app supports (including per-server timeout/recycling, tool-selection, and resource/prompt utility policy).
  • connectMcp / connectMcpEntry / bridgeMcpTool — lower-level building blocks if you need to bypass mountMcp. connectMcpEntry applies the adapter-owned HTTP auth or stdio environment seam.
  • includeTool(tool, { includeTools, excludeTools, filterTools }) — the pure selection predicate connectMcp applies; exported for reuse/testing.
  • sanitizeMcpText / sanitizeMcpValue / sanitizeMcpMetadata — the same result-boundary sanitizers, exported for custom bridges.
  • mcpUtilityTools(connection, policy) — capability-aware resource and prompt wrappers used by both boot reload and lazy activation.
  • mountMcpToolSet(options) — lower-level owned live mount with atomic refresh and disposal.
  • recyclableMcpConnection(options) — lease-safe stdio lifecycle wrapper used by connectMcpEntry when recycling is enabled.
  • bearer(getter) — helper that wraps a token (or () => Promise<string> getter) into a ConnectMcpAuth emitting Authorization: Bearer ....
  • headers(mapOrGetter) — helper that wraps a header map (or getter) into a ConnectMcpAuth, for non-bearer servers (e.g. x-api-key).
  • adapterAuth(adapter, id) — resolves an entry's ConnectMcpAuth from the adapter's seams (getAuthHeaders first, then getAccessToken).
  • MCP_NAMESPACE_SEP — the __ separator constant.

From glove-mcp/oauth:

  • runMcpOAuth(opts) — end-to-end MCP-spec OAuth flow.
  • FsOAuthStore / MemoryOAuthStore — reference OAuthStore impls.
  • McpOAuthProvider / buildClientMetadata — lower-level pieces if you want to drive the SDK's auth() yourself.

Examples

Full reference consumer code lives in examples/mcp-cli/ — a multi-MCP CLI with discovermcp discovery, plus focused single-server agents for Notion and Gmail. Each *-mcp-auth.ts is ~50 lines on top of runMcpOAuth.

Documentation

License

MIT