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

@aiassist-secure/intelligence-mcp

v0.1.3

Published

Reference implementation of the Signal MCP spec — signal intelligence for agents. Ships `listen` + `signal://lexicon` + `sweep` as v0.1 MVP.

Readme

@aiassist-secure/intelligence-mcp

Reference implementation of the Signal MCP spec — an opinionated MCP server for signal intelligence, built on top of api.aiassist.net.

Status: v0.1 scaffold. Ships the full surface area (three tools, three resources, three prompts per spec §2) so MCP clients see the right tool list. signal://lexicon and the sweep prompt are live. listen, inspect, dispatch, signal://catalog, signal://playbooks, triage, and brief return structured -32002 errors with suggested_action until v1.0.

Ship order follows spec §13: listen + signal://lexicon + sweep = v0.1 MVP.


Install

npm install -g @aiassist-secure/intelligence-mcp

or run ad-hoc:

npx @aiassist-secure/intelligence-mcp

Configure

Set your aiassist.net bearer token in the environment:

export AIAS_API_KEY="aai_..."

Get a key at aiassist.net. BYOK for the underlying LLM providers (OpenAI, Anthropic, Gemini, Groq, Mistral) is handled upstream — the MCP server stays provider-agnostic and passes the token through.

Optional:

  • AIAS_API_BASE_URL — override the API base (default https://api.aiassist.net).

Claude Desktop

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

{
  "mcpServers": {
    "signal": {
      "command": "npx",
      "args": ["-y", "@aiassist-secure/intelligence-mcp"],
      "env": {
        "AIAS_API_KEY": "aai_..."
      }
    }
  }
}

Restart Claude Desktop. The signal server appears in the tool picker with listen, inspect, dispatch, plus the three resources and three prompts.

Cursor / Windsurf

Same config shape under each editor's MCP settings. See the MCP client docs for exact paths.

Verify with MCP Inspector

npm run inspector

Launches the official inspector pointed at the local build. Every surface should list cleanly; calling listen (or any unshipped surface) returns a well-formed -32002 error with a suggested_action.


What's in the box

| Surface | Type | v0.1 state | |---|---|---| | listen | tool | schema + description final; pipeline stubbed | | inspect | tool | schema + description final; body ships v1.0 | | dispatch | tool | schema + description final; body ships v1.0 | | signal://catalog | resource | stubbed; awaiting authoritative source list | | signal://lexicon | resource | live — all 10 intents drafted per §4.1 | | signal://playbooks | resource | ships with v1.0 | | sweep | prompt | live — audience + timeframe + depth → scoped listen call | | triage | prompt | ships with v1.0 | | brief | prompt | ships with v1.0 |

Develop

git clone https://github.com/aiassistsecure/signal-MCP-spec.git
cd signal-MCP-spec/packages/intelligence-mcp
npm install
npm run build
npm test
  • npm run dev — tsup watch mode
  • npm run typecheck — strict tsc --noEmit
  • npm run inspector — MCP Inspector against the built CLI

License

MIT. See LICENSE at the repo root.

Links