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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@anygpt/mcp-discovery

v0.3.2

Published

MCP Discovery Engine - Core logic for on-demand MCP tool discovery

Readme

@anygpt/mcp-discovery

⚠️ WORK IN PROGRESS: This package is under active development. APIs and discovery mechanisms may change significantly. Use at your own risk in production environments.

MCP Discovery Engine - Core logic for on-demand MCP tool discovery.

Overview

Provides search, filtering, caching, and tool execution proxy capabilities to enable AI agents to discover and use tools from 100+ MCP servers without loading everything into context.

Key Capability: Reduces token consumption from 100,000+ tokens to ~600 tokens per message (99% reduction).

Installation

npm install @anygpt/mcp-discovery

Usage

Basic Setup

import { DiscoveryEngine } from '@anygpt/mcp-discovery';

// Create discovery engine with default configuration
const engine = new DiscoveryEngine({
  enabled: true,
  cache: {
    enabled: true,
    ttl: 3600, // 1 hour
  },
});

Search for Tools

// Free-text search across all tools
const results = await engine.searchTools('github issue');

// Search with options
const filtered = await engine.searchTools('create', {
  server: 'github', // Filter by server
  limit: 5, // Limit results
});

// Results include relevance scores
results.forEach((result) => {
  console.log(`${result.server}:${result.tool} (${result.relevance})`);
  console.log(`  ${result.summary}`);
  console.log(`  Tags: ${result.tags.join(', ')}`);
});

List and Get Tool Details

// List all servers
const servers = await engine.listServers();

// List tools from a specific server
const githubTools = await engine.listTools('github');

// Get detailed information about a tool
const tool = await engine.getToolDetails('github', 'create_issue');
console.log(tool?.description);
console.log(tool?.parameters);

Execute Tools

// Execute a tool
const result = await engine.executeTool('github', 'create_issue', {
  repo: 'owner/repo',
  title: 'Bug report',
  body: 'Description of the bug',
});

if (result.success) {
  console.log('Tool executed successfully:', result.result);
} else {
  console.error('Execution failed:', result.error?.message);
}

Advanced Configuration

// Configure with tool rules for filtering
const engine = new DiscoveryEngine({
  enabled: true,
  cache: {
    enabled: true,
    ttl: 3600,
  },
  toolRules: [
    // Enable all github tools
    {
      pattern: ['*github*'],
      enabled: true,
      tags: ['github'],
    },
    // Disable dangerous tools
    {
      pattern: ['*delete*', '*remove*'],
      enabled: false,
      tags: ['dangerous'],
    },
    // Server-specific rules
    {
      server: 'jira',
      pattern: ['*ticket*'],
      enabled: true,
      tags: ['jira', 'tickets'],
    },
  ],
});

Pattern Matching

Supports multiple pattern types:

// Glob patterns
{ pattern: ['*github*'] }           // Contains 'github'
{ pattern: ['github_*'] }           // Starts with 'github_'
{ pattern: ['*_issue'] }            // Ends with '_issue'

// Regex patterns
{ pattern: ['/^create_/'] }         // Starts with 'create_'
{ pattern: ['/^(create|update)_/'] } // Starts with 'create_' or 'update_'

// Negation patterns
{ pattern: ['!*delete*'] }          // Exclude tools with 'delete'
{ pattern: ['!*dangerous*'] }       // Exclude dangerous tools

// Combined patterns
{
  pattern: ['*github*', '!*delete*'],
  enabled: true
}

Features

  • Configuration Loading: Load discovery config from TypeScript files
  • Pattern Matching: Glob and regex patterns for tool filtering
  • Search Engine: Free-text search with relevance scoring
  • Tool Metadata: Manage tool metadata with enabled/disabled status
  • Caching: TTL-based caching for performance
  • Tool Execution: Proxy tool execution to actual MCP servers

Documentation

License

MIT