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

@speajus/diblob-mcp

v1.0.3

Published

Model Context Protocol (MCP) server implementation for diblob dependency injection containers

Readme

@speajus/diblob-mcp

Model Context Protocol (MCP) server implementation for diblob dependency injection containers.

Overview

@speajus/diblob-mcp provides an MCP server that exposes diblob container functionality through the Model Context Protocol, enabling AI assistants and other MCP clients to interact with your dependency injection containers.

Features

  • MCP Server: Expose diblob containers through the Model Context Protocol
  • Container Introspection: Query registered blobs and their dependencies
  • Dynamic Registration: Register and unregister blobs through MCP tools
  • Type-Safe: Full TypeScript support with type inference
  • Diblob Architecture: Follows diblob patterns with separate interface/implementation files

Installation

npm install @speajus/diblob-mcp @speajus/diblob @modelcontextprotocol/sdk

Requirements: Node.js >= 22.0.0

Quick Start

import { createContainer } from '@speajus/diblob';
import { registerMcpBlobs, mcpServer } from '@speajus/diblob-mcp';

// Create a diblob container
const container = createContainer();

// Register MCP server blobs
registerMcpBlobs(container);

// Start the MCP server by resolving the mcpServer blob.
// The registration uses lifecycle hooks to call server.start() for you.
await container.resolve(mcpServer);

Architecture

Following diblob conventions, this package separates:

  • Interface/Blob Definitions (src/blobs.ts): Type definitions and blob declarations
  • Implementations (src/server.ts): Concrete MCP server implementation
  • Registration (src/register.ts): Registration function that accepts a container

API Reference

registerMcpBlobs(container)

Registers all MCP-related blobs with the provided container.

import { createContainer } from '@speajus/diblob';
import { registerMcpBlobs, mcpServer } from '@speajus/diblob-mcp';

// Start the MCP server (lifecycle hooks will call start() for you)
await container.resolve(mcpServer);

## Lifecycle

The `registerMcpBlobs` helper registers the `mcpServer` blob as a
`Lifecycle.Singleton` with lifecycle hooks:

- `initialize: 'start'` – called the first time the blob is resolved
- `dispose: 'stop'` – called when the blob is invalidated (for example, when
  it or one of its dependencies is re-registered or unregistered)

This means:

- The MCP server starts automatically the first time you resolve `mcpServer`,
  e.g. with `await container.resolve(mcpServer)`.
- The MCP server is stopped automatically when its registration (or its
  dependencies) are invalidated, following diblob's cascading disposal
  semantics.

const container = createContainer();
registerMcpBlobs(container);

License

MIT