Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@frontmcp/adapters

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frontmcp/adapters

Adapters for the FrontMCP framework

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

@frontmcp/adapters

Adapters that extend FrontMCP servers by auto-generating MCP tools from external specifications.

NPM

Install

npm install @frontmcp/adapters

Available Adapters

OpenAPI Adapter

Generate MCP tools from an OpenAPI spec. Each operation becomes a tool with Zod input validation and automatic request/response handling.

import { App } from '@frontmcp/sdk';
import { OpenapiAdapter } from '@frontmcp/adapters';

@App({
  id: 'my-app',
  name: 'My App',
  adapters: [
    OpenapiAdapter.init({
      name: 'backend:api',
      url: 'https://api.example.com/openapi.json',
      baseUrl: 'https://api.example.com',
    }),
  ],
})
export default class MyApp {}

Powered by mcp-from-openapi for parameter conflict resolution, multi-security schemes, and request mappers.

Full guide: OpenAPI Adapter

Docs

TopicLink
Adapters overviewAdapters Overview
OpenAPI adapterOpenAPI Adapter
Step-by-step guideAdd OpenAPI Adapter

License

Apache-2.0 — see LICENSE.

Keywords

mcp

FAQs

Package last updated on 27 May 2026

Did you know?

Socket

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.

Install

Related posts