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

@rimitive/mcp

v0.1.2

Published

MCP server exposing Rimitive documentation to coding LLMs

Readme

@rimitive/mcp

MCP (Model Context Protocol) server that exposes Rimitive documentation to coding LLMs like Claude.

Installation

npm install -g @rimitive/mcp
# or
npx @rimitive/mcp

Usage

With Claude Code

Add to your Claude Code MCP configuration (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "rimitive": {
      "command": "npx",
      "args": ["@rimitive/mcp"]
    }
  }
}

With Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "rimitive": {
      "command": "npx",
      "args": ["@rimitive/mcp"]
    }
  }
}

Available Tools

search_api

Search Rimitive documentation for guides, API references, and examples.

Input:
  - query: string (required) - Search query
  - limit: number (optional, default: 5) - Maximum results

Output: Matching sections with titles, types, and excerpts

get_module

Get full documentation for a specific Rimitive module or function.

Input:
  - name: string (required) - Module or function name
    Examples: "SignalModule", "computed", "effect", "el", "map", "match"

Output: Complete documentation including code examples

get_example

Get code examples matching a pattern from Rimitive documentation.

Input:
  - pattern: string (required) - Pattern to search for
    Examples: "form validation", "todo app", "counter", "routing"
  - limit: number (optional, default: 3) - Maximum sections to search

Output: Code examples with context

get_patterns

Get idiomatic patterns and best practices for common tasks. Use this before writing code to learn the recommended approach.

Input:
  - topic: string (required) - Topic to get patterns for
    Examples: "behavior", "form", "validation", "signal", "component", "testing"

Output: Comprehensive pattern documentation with examples

Example Queries

Once configured, Claude can use these tools to help you write Rimitive code:

  • "How do I create a reactive list?" → search_api finds relevant guides
  • "Show me the signal API" → get_module returns full signal documentation
  • "Give me a counter example" → get_example extracts counter code samples
  • "What's the idiomatic way to build a form?" → get_patterns returns form patterns and best practices

Development

# Build
pnpm build

# Run locally
node bin/rimitive-mcp.js

# Test with JSON-RPC
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' | node bin/rimitive-mcp.js

License

MIT