MCP REST Server
Enables interaction with any REST API through token or login authentication, with automatic Swagger/OpenAPI documentation integration for endpoint discovery and comprehensive HTTP request support.
README
MCP REST Server
A Model Context Protocol (MCP) server that provides REST API client functionality with authentication support and Swagger documentation integration.
Features
- Multiple Authentication Methods: Support for both token-based and login-based authentication
- Swagger Integration: Automatic endpoint discovery and documentation from OpenAPI/Swagger specs
- Automatic Token Management: Handles token refresh and re-authentication
- Comprehensive HTTP Methods: Support for GET, POST, PUT, DELETE, and PATCH requests
- Error Handling: Robust error handling with retry logic
- MCP Compatible: Fully compatible with the Model Context Protocol
Installation
npm install
npm run build
Development
npm run dev
Configuration
The server supports two authentication methods:
Token Authentication
{
"baseUrl": "https://api.example.com",
"swaggerUrl": "https://api.example.com/swagger.json",
"auth": {
"type": "token",
"token": "your-api-token-here"
},
"timeout": 30000,
"retries": 3
}
Login Authentication
{
"baseUrl": "https://api.example.com",
"swaggerUrl": "https://api.example.com/swagger.json",
"auth": {
"type": "login",
"username": "your-username",
"password": "your-password",
"loginEndpoint": "/auth/login",
"tokenField": "access_token"
},
"timeout": 30000,
"retries": 3
}
Available Tools
1. configure_rest_client
Configure the REST client with authentication and API details.
Parameters:
baseUrl(required): Base URL for the REST APIauth(required): Authentication configuration (token or login)swaggerUrl(optional): URL to Swagger/OpenAPI documentationtimeout(optional): Request timeout in milliseconds (default: 30000)retries(optional): Number of retries for failed requests (default: 3)
2. http_request
Make HTTP requests to the configured API.
Parameters:
method(required): HTTP method (GET, POST, PUT, DELETE, PATCH)path(required): API endpoint pathparams(optional): Query parameters or request body parametersbody(optional): Request body for POST, PUT, PATCH requestsheaders(optional): Additional headers
3. get_swagger_documentation
Get the complete list of available endpoints from Swagger documentation.
4. search_endpoints
Search for endpoints in the Swagger documentation.
Parameters:
query(required): Search query to find matching endpoints
5. get_endpoint_info
Get detailed information about a specific endpoint.
Parameters:
path(required): Endpoint pathmethod(required): HTTP method
6. check_authentication
Check if the client is currently authenticated.
7. logout
Logout and clear authentication state.
Usage Examples
Basic Setup
- Configure the client:
{
"baseUrl": "https://jsonplaceholder.typicode.com",
"auth": {
"type": "token",
"token": "dummy-token"
}
}
- Make a GET request:
{
"method": "GET",
"path": "/posts/1"
}
- Make a POST request:
{
"method": "POST",
"path": "/posts",
"body": {
"title": "New Post",
"body": "Post content",
"userId": 1
}
}
With Swagger Documentation
{
"baseUrl": "https://petstore.swagger.io/v2",
"swaggerUrl": "https://petstore.swagger.io/v2/swagger.json",
"auth": {
"type": "token",
"token": "your-api-key"
}
}
Then you can:
- Search endpoints:
search_endpointswith query "pet" - Get endpoint info:
get_endpoint_infowith path "/pet" and method "POST" - View all documentation:
get_swagger_documentation
Authentication Flow
Token Authentication
- Token is stored and used immediately
- Added to requests as
Authorization: Bearer <token> - If 401 received, no automatic retry (token assumed invalid)
Login Authentication
- Makes login request to specified endpoint
- Extracts token from response using
tokenField - Stores token in memory
- Adds token to subsequent requests
- If 401 received, automatically re-authenticates and retries
Error Handling
- Network errors: Automatic retry with exponential backoff
- Authentication errors: Automatic re-authentication for login-based auth
- Validation errors: Clear error messages with details
- API errors: HTTP status and error message forwarding
Development
Project Structure
src/
├── types.ts # TypeScript type definitions
├── auth.ts # Authentication manager
├── swagger.ts # Swagger documentation parser
├── rest-client.ts # REST client implementation
└── index.ts # MCP server implementation
Building
npm run build
Running
npm start
MCP Client Configuration
The MCP REST server now supports automatic configuration through multiple methods, eliminating the need to configure APIs manually for each project.
Configuration Methods (in order of priority)
- Command Line Arguments (highest priority)
- Environment Variables
- Configuration File
- Manual Configuration (via MCP tools - lowest priority)
Cursor Configuration
Option 1: Auto-Configuration with Environment Variables (Recommended)
{
"mcpServers": {
"mcp-rest-github": {
"command": "node",
"args": ["/path/to/your/mcp-rest/dist/index.js"],
"env": {
"MCP_REST_BASE_URL": "https://api.github.com",
"MCP_REST_AUTH_TYPE": "token",
"MCP_REST_TOKEN": "your-github-token-here",
"MCP_REST_SWAGGER_URL": "https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json"
}
},
"mcp-rest-petstore": {
"command": "node",
"args": ["/path/to/your/mcp-rest/dist/index.js"],
"env": {
"MCP_REST_BASE_URL": "https://petstore.swagger.io/v2",
"MCP_REST_AUTH_TYPE": "token",
"MCP_REST_TOKEN": "your-api-key",
"MCP_REST_SWAGGER_URL": "https://petstore.swagger.io/v2/swagger.json"
}
}
}
}
Option 2: Auto-Configuration with Config Files
{
"mcpServers": {
"mcp-rest-github": {
"command": "node",
"args": ["/path/to/your/mcp-rest/dist/index.js", "--config", "/path/to/your/mcp-rest/examples/github-api.json"]
},
"mcp-rest-petstore": {
"command": "node",
"args": ["/path/to/your/mcp-rest/dist/index.js", "--config", "/path/to/your/mcp-rest/examples/petstore.json"]
}
}
}
Option 3: Auto-Configuration with Command Line Arguments
{
"mcpServers": {
"mcp-rest-github": {
"command": "node",
"args": [
"/path/to/your/mcp-rest/dist/index.js",
"--base-url", "https://api.github.com",
"--auth-type", "token",
"--token", "your-github-token-here",
"--swagger-url", "https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json"
]
}
}
}
Claude Desktop Configuration
Location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Use the same configuration options as Cursor above.
Configuration Examples
The project includes several example configurations in the examples/ directory:
examples/github-api.json- GitHub API configurationexamples/petstore.json- Swagger Petstore API configurationexamples/jsonplaceholder.json- JSONPlaceholder API configuration
Environment Variables
| Variable | Description |
|---|---|
MCP_REST_BASE_URL |
Base URL for the REST API (required) |
MCP_REST_AUTH_TYPE |
Authentication type: 'token' or 'login' (required) |
MCP_REST_TOKEN |
API token (required for token auth) |
MCP_REST_USERNAME |
Username (required for login auth) |
MCP_REST_PASSWORD |
Password (required for login auth) |
MCP_REST_LOGIN_ENDPOINT |
Login endpoint path (required for login auth) |
MCP_REST_TOKEN_FIELD |
Token field name in login response (default: access_token) |
MCP_REST_SWAGGER_URL |
URL to Swagger/OpenAPI documentation |
MCP_REST_TIMEOUT |
Request timeout in milliseconds (default: 30000) |
MCP_REST_RETRIES |
Number of retries for failed requests (default: 3) |
MCP_REST_CONFIG_FILE |
Path to JSON configuration file |
Note: Replace /path/to/your/mcp-rest/ with the actual path to your MCP REST server directory.
Usage in Claude/Cursor
With Auto-Configuration (Recommended)
If you've configured the server with auto-configuration (environment variables, CLI args, or config file), the server will be ready to use immediately:
Make a GET request to /posts/1
Show me all available endpoints
Search for endpoints related to "user"
With Manual Configuration
If you haven't provided auto-configuration, you can still configure the client manually:
- Configure the client first:
Please configure the REST client with:
- Base URL: https://api.example.com
- Authentication: token
- Token: your-api-token-here
- Swagger URL: https://api.example.com/swagger.json
- Then make API requests:
Make a GET request to /users/123
Testing the Configuration
You can test your configuration before using it in Claude/Cursor:
# Test with config file
node dist/index.js --config examples/jsonplaceholder.json
# Test with CLI arguments
node dist/index.js --base-url https://api.github.com --auth-type token --token your-token
# Test with environment variables
MCP_REST_BASE_URL=https://httpbin.org MCP_REST_AUTH_TYPE=token MCP_REST_TOKEN=test node dist/index.js
If you see "✅ Auto-configured REST client for [URL]", the configuration is working correctly.
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.