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

@gicm/mcp-server

v1.0.1

Published

MCP server for gICM marketplace - semantic search for agents, skills, MCPs, and workflows

Downloads

37

Readme

@gicm/mcp-server

MCP (Model Context Protocol) server for gICM marketplace. Provides semantic search over 390+ components directly in Claude Code, Cursor, and Windsurf.

Features

  • search_components - Find agents, skills, MCPs, workflows by natural language
  • search_codebase - Semantic search across indexed Git repositories
  • get_file_context - Get specific lines from indexed files
  • index_repository - Queue Git repos for indexing

Installation

Claude Code

Add to ~/.config/claude/mcp_servers.json:

{
  "mcpServers": {
    "gicm-context": {
      "command": "npx",
      "args": ["-y", "@gicm/mcp-server"],
      "env": {
        "QDRANT_URL": "http://localhost:6333",
        "GEMINI_API_KEY": "${GEMINI_API_KEY}"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "gicm-context": {
      "command": "npx",
      "args": ["-y", "@gicm/mcp-server"]
    }
  }
}

Prerequisites

  1. Qdrant running on localhost:6333
  2. Gemini API Key for embeddings (free tier available)
  3. Indexed gICM registry (run the indexer first)

Quick Start

# Start Qdrant (from services/context-engine/)
docker compose up -d

# Index gICM registry
cd services/context-engine
python scripts/index-gicm-registry.py

# Now Claude Code can use the MCP server!

Usage Examples

In Claude Code, Cursor, or Windsurf:

"Find me a Solana trading bot agent"
→ Uses search_components to find relevant agents

"Search for authentication code"
→ Uses search_codebase to find auth implementations

"Index the repo https://github.com/user/project"
→ Queues repository for indexing

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | QDRANT_URL | Qdrant server URL | http://localhost:6333 | | INDEXER_API | Indexer service URL | http://localhost:8000 | | GEMINI_API_KEY | Gemini API key (free tier) | Required |

Development

cd packages/mcp-server
npm install
npm run dev

License

MIT