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

@chrisdburr/tea-techniques-mcp

v0.1.1

Published

MCP server for the TEA Techniques knowledge graph — AI assurance technique discovery via natural language

Readme

@chrisdburr/tea-techniques-mcp

MCP server for the TEA Techniques knowledge graph — discover AI assurance techniques through natural language.

npm version License: MIT

Quick Start

No installation needed — run directly with npx:

npx @chrisdburr/tea-techniques-mcp

Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "tea-techniques": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@chrisdburr/tea-techniques-mcp"]
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "tea-techniques": {
      "command": "npx",
      "args": ["-y", "@chrisdburr/tea-techniques-mcp"]
    }
  }
}

After configuring, restart Claude. You should see tools prefixed with mcp__tea-techniques__.

Features

  • 10 tools for searching, filtering, comparing, and exploring AI assurance techniques
  • Semantic search — embedding-based claim matching with hybrid RRF ranking
  • Knowledge graph with 92 techniques, 7 assurance goals, and 450+ academic resources
  • Zero configuration — fetches data remotely from GitHub Pages with 24h caching

How It Works

The server fetches the TEA Techniques knowledge graph from GitHub Pages on first run and caches it locally for 24 hours (~/.cache/tea-techniques-mcp/). Semantic search uses a lightweight ONNX model (~30MB, downloaded on first use) to match natural-language claims against technique embeddings.

Tool Reference

| Tool | Description | |------|-------------| | find_techniques | Search and filter techniques by query, goals, tags, complexity | | get_technique | Get full details of a specific technique by slug | | compare_techniques | Side-by-side comparison of 2-5 techniques | | find_related | Find related techniques via links, shared goals, or tags | | suggest_techniques_for_claim | Match assurance claims to relevant techniques using semantic search | | find_evidence_types | Explore what evidence types techniques can produce | | explore_taxonomy | Navigate the hierarchical tag taxonomy | | coverage_statistics | Analyse dataset coverage across dimensions | | search_resources | Search academic papers, software, and documentation | | get_knowledge_graph_summary | High-level statistics about the knowledge graph |

Development

This package is part of the TEA Techniques monorepo. For local development:

git clone https://github.com/alan-turing-institute/tea-techniques.git
cd tea-techniques/mcp-server
pnpm install
pnpm dev          # Run from source with tsx
pnpm dev --local  # Load data from local project files

License

MIT