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

frontmcp

v0.12.2

Published

FrontMCP command line interface

Readme

The TypeScript way to build MCP servers with decorators, DI, and Streamable HTTP.

NPM - @frontmcp/sdk Node License Snyk

DocsQuickstartAPI ReferenceDiscord


FrontMCP is a TypeScript-first framework for the Model Context Protocol (MCP). You write clean, typed code; FrontMCP handles the protocol, transport, DI, session/auth, and execution flow.

import 'reflect-metadata';
import { FrontMcp, LogLevel } from '@frontmcp/sdk';
import HelloApp from './hello.app';

@FrontMcp({
  info: { name: 'Demo', version: '0.1.0' },
  apps: [HelloApp],
  http: { port: 3000 },
  logging: { level: LogLevel.Info },
})
export default class Server {}

Installation

Node.js 22+ required (24 recommended).

# New project (recommended)
npx frontmcp create my-app

# Existing project
npm i -D frontmcp @types/node@^22
npx frontmcp init

Full setup guide: Installation

Capabilities

| Capability | Description | Docs | | -------------------- | ------------------------------------------------------------------------------- | ------------------------------- | | @FrontMcp Server | Decorator-configured server with info, apps, HTTP, logging, session, auth | Server | | @App | Organizational units grouping tools, resources, prompts with optional isolation | Apps | | @Tool | Typed actions with Zod schemas — class or function style | Tools | | @Resource | Read-only data exposure with static and template URIs | Resources | | @Prompt | Reusable message templates returning GetPromptResult | Prompts | | @Agent | Orchestrated multi-step tool chains | Agents | | Elicitation | Request structured user input mid-flow | Elicitation | | Skills | HTTP-discoverable tool manifests for agent marketplaces | Skills | | Discovery | Automatic capability advertisement for MCP clients | Discovery | | Authentication | Remote OAuth, Local OAuth, JWKS, DCR, per-app auth | Authentication | | Sessions | Stateful/stateless session modes with JWT or UUID transport IDs | Server | | Direct Client | In-process create(), connect(), connectOpenAI(), connectClaude() | Direct Client | | Transport | Streamable HTTP + SSE with session headers | Transport | | Ext-Apps | Mount external MCP servers as sub-apps | Ext-Apps | | Hooks | 5 hook families: tool, list-tools, HTTP, resource, prompt | Hooks | | Providers / DI | Scoped dependency injection with GLOBAL and CONTEXT scopes | Providers | | Plugins | Cache, Remember, CodeCall, Dashboard — or build your own | Plugins | | Adapters | Generate tools from OpenAPI specs | Adapters | | Testing | E2E fixtures, matchers, HTTP mocking for MCP servers | Testing | | UI Library | HTML/React widgets, SSR, MCP Bridge, web components | UI | | CLI | create, init, dev, build, inspector, doctor | CLI | | Deployment | Local dev, production builds, version alignment | Deployment |

Packages

| Package | Description | | ------------------------------------- | ------------------------------------------------------ | | @frontmcp/sdk | Core framework — decorators, DI, flows, transport | | @frontmcp/cli | CLI tooling (frontmcp create, dev, build) | | @frontmcp/auth | Authentication, OAuth, JWKS, credential vault | | @frontmcp/adapters | OpenAPI adapter for auto-generating tools | | @frontmcp/plugins | Official plugins: Cache, Remember, CodeCall, Dashboard | | @frontmcp/testing | E2E test framework with fixtures and matchers | | @frontmcp/ui | React components, hooks, SSR renderers | | @frontmcp/uipack | React-free themes, build tools, platform adapters | | @frontmcp/di | Dependency injection container (internal) | | @frontmcp/utils | Shared utilities — naming, URI, crypto, FS (internal) |

Version Alignment

Keep all @frontmcp/* packages on the same version. A clear "version mismatch" error is thrown at boot if versions drift. (Production Build)

Contributing

PRs welcome! See CONTRIBUTING.md for workflow, coding standards, and the PR checklist.

License

Apache-2.0