MCP REST Server
A server for interacting with REST APIs, featuring authentication and Swagger documentation support.
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_endpoints
with query "pet" - Get endpoint info:
get_endpoint_info
with 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
Related Servers
Tatara MCP Server
An MCP server for interacting with the Tatara blockchain ecosystem. Requires configuration for the Tatara RPC endpoint and a wallet private key.
Shell Command MCP Server
Execute pre-configured and secure shell commands via a Go-based MCP server.
VSCode MCP
Enables AI agents and assistants to interact with Visual Studio Code through the Model Context Protocol.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
mcp-registry-mcp
Interact with an MCP registry to check health, list entries, and get server details.
MasterMCP
A demonstration tool showcasing potential security attack vectors against the Model Control Protocol (MCP).
Clay MCP Server
An MCP server for interacting with the Clay API, which requires a Clay API key.
Debugger MCP Server
A development tool for real-time debugging, code quality monitoring, and AI insights for React/Next.js applications.
Grafana
Search dashboards, investigate incidents and query datasources in your Grafana instance
Jenkins Server MCP
A tool for interacting with Jenkins CI/CD servers, requiring environment variables for configuration.