Provides REST API client functionality for interacting with GitHub's API, supporting endpoint discovery through OpenAPI documentation and authenticated requests for managing repositories, issues, and other GitHub resources.
Enables automatic endpoint discovery and documentation parsing from OpenAPI/Swagger specifications, allowing dynamic exploration and interaction with any REST API that provides Swagger documentation.
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
Development
Configuration
The server supports two authentication methods:
Token Authentication
Login Authentication
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:
Make a GET request:
Make a POST request:
With Swagger Documentation
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
tokenFieldStores 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
Building
Running
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)
Option 2: Auto-Configuration with Config Files
Option 3: Auto-Configuration with Command Line Arguments
Claude Desktop Configuration
Location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%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 |
| Base URL for the REST API (required) |
| Authentication type: 'token' or 'login' (required) |
| API token (required for token auth) |
| Username (required for login auth) |
| Password (required for login auth) |
| Login endpoint path (required for login auth) |
| Token field name in login response (default: access_token) |
| URL to Swagger/OpenAPI documentation |
| Request timeout in milliseconds (default: 30000) |
| Number of retries for failed requests (default: 3) |
| 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:
With Manual Configuration
If you haven't provided auto-configuration, you can still configure the client manually:
Configure the client first:
Then make API requests:
Testing the Configuration
You can test your configuration before using it in Claude/Cursor:
If you see "✅ Auto-configured REST client for [URL]", the configuration is working correctly.
License
MIT