Mcp
Deploy MCP Server on Vercel
Copy page
Deploy your own Inkeep MCP server with Next.js on Vercel.
Overview
This self-hosted option gives you full control over your MCP server. The template repo includes two tools that call Inkeep's APIs:
ask-question(Use this tool to ask a question about the product)search-knowledge-base(Use this tool to do a semantic search for reference content related to the product)
View the complete template on GitHub →
To deploy on Vercel:
- Clone the repository and push to GitHub
- Create a new Vercel project and import the repository
- Vercel will automatically detect this as a Next.js project. No special build configuration is required.
- The MCP server will be deployed at
https://your-app.vercel.app/mcp
Authentication
To use the Inkeep MCP server, you’ll need an Inkeep API key.
- Go to the Inkeep portal and follow these steps Get an API key.
- When making MCP requests, include your API key in the Authorization header using the Bearer format:
Alternatively, you can specify INKEEP_API_KEY as an environment variable to the MCP server. Be aware: exposing the key this way will make your MCP server accessible to others if not properly secured.
MCP Client Setup
After deploying, configure your MCP client to use your Vercel deployment:
Cursor:
Claude Desktop:
Implementation Example
Below is a snippet of the server tool that calls the inkeep-rag model: