
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
@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
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.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.