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

ai.matey.mcp

v0.1.0

Published

MCP (Model Context Protocol) tool-calling for AI Matey - translate MCP tools into the IR tool-execution loop via an injectable client

Readme

ai.matey.mcp

MCP (Model Context Protocol) tool-calling for the ai.matey Universal AI Adapter System — translate an MCP server's tools into the agentic tool-execution loop ai.matey.core's Bridge already ships (bridge.runTools()), via an injectable client.

npm install ai.matey.mcp

No hard (or peer) dependency on any MCP SDK — ai.matey.mcp depends only on ai.matey.types and a small structural interface (McpClientLike: listTools, callTool) that any MCP client can satisfy: the official @modelcontextprotocol/sdk, mcp-query (@johnhenry/mcpq), or a test fake.

Why this is small

ai.matey.core already has a complete agentic loop (Bridge.runTools() / createRunTools()): execute → if the model requests tools, run them → append results → re-execute, until the model answers. This package doesn't reimplement any of that — it just converts MCP tools into the ToolDefinition shape that loop already consumes, so MCP tool-calling gets the same validation, iteration limits, and parallel execution for free.

Quick start

import { Bridge } from 'ai.matey.core';
import { OpenAIFrontendAdapter } from 'ai.matey.frontend';
import { OpenAIBackendAdapter } from 'ai.matey.backend';
import { runMcpTools } from 'ai.matey.mcp';

// Any client satisfying McpClientLike - e.g. an mcp-query MCPClient already
// connected to one or more servers.
declare const mcpClient: import('ai.matey.mcp').McpClientLike;

const bridge = new Bridge(
  new OpenAIFrontendAdapter(),
  new OpenAIBackendAdapter({ apiKey: process.env.OPENAI_API_KEY })
);

const result = await runMcpTools(bridge.runTools, {
  client: mcpClient,
  prompt: 'What files changed in the last commit?',
});

console.log(result.text);

API

| Export | Purpose | |---|---| | McpClientLike | The structural interface an injected MCP client must satisfy (listTools, callTool) | | mcpToolToIRTool(tool) | Convert one MCP tool schema to an IRTool | | extractMcpResultText(result) | Best-effort text extraction from an MCP CallToolResult | | mcpToolsToDefinitions(client, options?) | List an MCP client's tools and build a Record<string, ToolDefinition> | | runMcpTools(runTools, options) | Run bridge.runTools() (or any compatible runTools function) against an MCP client's tools |

mcpToolsToDefinitions and runMcpTools both accept:

  • server?: string — which server to list/call tools against, for multi-server clients
  • toolFilter?: (tool: McpToolSchema) => boolean — only include matching tools
  • signal?: AbortSignal — forwarded to callTool

Using your own tools object

If you want more control than runMcpTools gives you (e.g. mixing MCP tools with hand-written ones), use mcpToolsToDefinitions directly and call bridge.runTools() yourself:

import { mcpToolsToDefinitions } from 'ai.matey.mcp';

const mcpTools = await mcpToolsToDefinitions(mcpClient);

const result = await bridge.runTools({
  prompt: 'Summarize the open issues.',
  tools: { ...mcpTools, myOwnTool: { description: '...', parameters: {...}, execute: async () => {...} } },
});

WebMCP compatibility

Works with WebMCP-exposed tools (tools registered in-page via document.modelContext, consumed by a browser-side agent) without any changes here - mcp-query ships webMcpToolServer(), an in-memory MCP-server shim you can plug into new MCPClient({ servers: { page: webMcpToolServer() } }). Any MCPClient built that way already satisfies McpClientLike.

License

MIT