MCP server for your API

Work in Progress

This feature is currently not yet generally available. Please email us to get started.

Model Context Protocol (MCP) is an open standard by Anthropic that enables AI applications to connect with external data sources and tools.

Fern can generate a production-ready MCP server that augments your existing SDK. Developers can then interact with your API directly through AI clients (like Claude Desktop, Cursor, and Windsurf).

How it works

Fern generates an MCP server on top of your existing SDK and maintains it in its own repository. Developers can install your MCP server by adding a configuration snippet to their AI client:

1{
2 "mcpServers": {
3 "<your-company>": {
4 "command": "npx",
5 "args": [ "-y", "<your-company>-mcp-server@latest" ]
6 }
7 }
8}

Example: Webflow

Webflow launched their official MCP server using their existing Fern-generated TypeScript SDK. You can view the source code on GitHub.