rest-api-mcp
A lightweight MCP server that enables LLMs to interact with any REST API via HTTP requests, with smart response truncation, TypeScript type generation, and field extraction.
README
rest-api-mcp
A lightweight Model Context Protocol (MCP) server that lets LLMs interact with any REST API. It executes HTTP requests and provides optimized response analysis, including automatic TypeScript interface generation from live API responses.
Features
- Full HTTP support — GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
- Smart response truncation — large JSON payloads are intelligently reduced (arrays sliced, structure preserved) instead of being cut mid-string
- TypeScript type generation — automatically derives TypeScript interfaces from API response structures
- Response structure analysis — inspect keys, types, and array lengths without returning the full body
- Field extraction — pull specific fields using dot-notation paths (e.g.
data.items[].name) - Flexible authentication — bearer token resolution chain: project
.env.mcpfile → MCP config env var → session token - Custom headers — inject global headers via
HEADER_*environment variables - Zero external runtime dependencies — uses only the MCP SDK and Node.js built-in
fetch
Tools
| Tool | Description |
|---|---|
rest_request |
Execute a request and return the full (smart-truncated) response |
rest_describe |
Execute a request and return the response structure + generated TypeScript interfaces (no full body) |
rest_types |
Execute a request and return only the generated TypeScript interfaces |
rest_extract |
Execute a request and extract specific fields by dot-notation paths |
rest_set_token |
Set a bearer token for the current session |
Installation
Prerequisites
- Node.js >= 18.0.0
- pnpm (or npm/yarn)
Build from source
git clone <repository-url>
cd rest-api-mcp
pnpm install
pnpm build
Configure in your MCP client
Add the server to your MCP client configuration (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"rest-api": {
"command": "node",
"args": ["/path/to/rest-api-mcp/dist/index.js"],
"env": {
"REST_BASE_URL": "https://api.example.com",
"REST_BEARER_TOKEN": "your-token-here"
}
}
}
}
Configuration
All configuration is done via environment variables:
| Variable | Required | Description |
|---|---|---|
REST_BASE_URL |
Yes | Base URL for all API requests (e.g. https://api.example.com/v1) |
REST_BEARER_TOKEN |
No | Bearer token for authentication |
REST_RESPONSE_SIZE_LIMIT |
No | Max response size in bytes before smart truncation (default: 50000) |
REST_ENV_DIR |
No | Additional directory to search for .env.mcp files containing REST_BEARER_TOKEN |
HEADER_* |
No | Custom headers injected into every request (e.g. HEADER_X_API_KEY=abc sends X-Api-Key: abc) |
Authentication
Bearer tokens are resolved in this order (first match wins):
- Project
.env.mcpfile —REST_BEARER_TOKENin a.env.mcpfile in the working directory orREST_ENV_DIR. Re-read on every request, so token rotation is supported without restarting the server. - MCP config env var —
REST_BEARER_TOKENset in the MCP server configuration. - Session token — set at runtime via the
rest_set_tokentool.
If a 401 or 403 response is received and no token is configured, the server returns an auth hint suggesting resolution steps.
Usage Examples
Basic request
rest_request({ method: "GET", endpoint: "/users" })
With query parameters
rest_request({ method: "GET", endpoint: "/users", query: { page: "1", limit: "10" } })
Generate TypeScript types from an endpoint
rest_types({ method: "GET", endpoint: "/users/1", typeName: "User" })
Describe response structure
rest_describe({ method: "GET", endpoint: "/products", typeName: "ProductList" })
Extract specific fields
rest_extract({ method: "GET", endpoint: "/orders", fields: ["data[].id", "data[].status", "meta.total"] })
Development
# Watch mode with hot reload
pnpm dev
# Build for production
pnpm build
# Run the built server
pnpm start
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.