
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
@frontmcp/sdk
Advanced tools
Build production-grade MCP servers in TypeScript — decorators, DI, and Streamable HTTP, batteries included.
FrontMCP turns the Model Context Protocol into a typed, declarative framework. You
write @Tool, @Resource, and @App classes; the SDK handles the protocol,
transport, sessions, auth, dependency injection, and execution flow — so the same
server runs on your laptop and ships to production unchanged.
npx frontmcp create my-app # scaffold a new project (recommended)
# …or add to an existing one:
npm install @frontmcp/sdk
Requires Node.js 24+. Full guide → Installation.
import 'reflect-metadata';
import { z } from 'zod';
import { App, FrontMcp, Tool, ToolContext } from '@frontmcp/sdk';
@Tool({ name: 'greet', inputSchema: { name: z.string() } })
class GreetTool extends ToolContext {
async execute({ name }: { name: string }) {
return `Hello, ${name}!`;
}
}
@App({ id: 'hello', name: 'Hello', tools: [GreetTool] })
class HelloApp {}
@FrontMcp({ info: { name: 'Demo', version: '0.1.0' }, apps: [HelloApp], http: { port: 3000 } })
export default class Server {}
Run npm run dev and point any MCP client at it. Full walkthrough → Quickstart.
@FrontMcp server, @App domains, and typed @Tool / @Resource /
@Prompt primitives with Zod schemas; @Agent multi-step chains and @Provider
dependency injection.
(Tools · Resources · Prompts · Agents · Providers)connectOpenAI / connectClaude / connectLangChain).
(Plugins · Adapters · Ext-Apps · Direct Client)→ Everything is documented at docs.agentfront.dev/frontmcp.
@frontmcp/cli — scaffolding and dev tooling (frontmcp create, dev, build)@frontmcp/auth — authentication, OAuth, JWKS, credential vault@frontmcp/adapters — OpenAPI adapter@frontmcp/plugins — Cache, Remember, CodeCall, Dashboard@frontmcp/testing — E2E testing framework@frontmcp/ui / @frontmcp/uipack — UI components and build toolsFAQs
FrontMCP SDK
The npm package @frontmcp/sdk receives a total of 3,804 weekly downloads. As such, @frontmcp/sdk popularity was classified as popular.
We found that @frontmcp/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.