fboucher/doc-mcp-server
If you are the rightful owner of doc-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This document provides details on setting up and using an MCP server with a tool for interacting with the Reka AI chat completions API.
Doc MCP Server
This is an MCP server with a single tool CheckInDoc that calls the Reka AI chat completions API.
Installation
- Clone the repository
- Install dependencies:
npm install - Build the project:
npm run build
Setting the REKA_API_KEY
You must provide your Reka API key for the server to work. Create a .env file in the project root:
REKA_API_KEY=your_actual_key_here
Alternatively, you can export the key in your shell before starting the server:
export REKA_API_KEY=your_actual_key_here
How to Start the Server
Run the server after building:
node build/index.js
How to Set the MCP Server in VS Code
Configure your mcp.json in VS Code to use this server:
"my-local-test": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
Make sure your environment has the REKA_API_KEY set, either in .env or exported in your shell, before launching from VS Code.