rest-api-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rest-api-mcpfetch all users from the /users endpoint"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 tokenCustom headers — inject global headers via
HEADER_*environment variablesZero external runtime dependencies — uses only the MCP SDK and Node.js built-in
fetch
Related MCP server: OpenAPI MCP Server
Tools
Tool | Description |
| Execute a request and return the full (smart-truncated) response |
| Execute a request and return the response structure + generated TypeScript interfaces (no full body) |
| Execute a request and return only the generated TypeScript interfaces |
| Execute a request and extract specific fields by dot-notation paths |
| 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 buildConfigure 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 |
| Yes | Base URL for all API requests (e.g. |
| No | Bearer token for authentication |
| No | Max response size in bytes before smart truncation (default: |
| No | Additional directory to search for |
| No | Custom headers injected into every request (e.g. |
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 startLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NicolaSpadari/rest_api_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server