@httpdrop/mcp-server
v1.0.0
Published
MCP server for httpdrop — expose mock endpoints as tools for Claude, Cursor and GitHub Copilot
Downloads
87
Maintainers
Readme
@httpdrop/mcp-server
MCP (Model Context Protocol) server for httpdrop — expose your mock endpoints as tools for Claude, Cursor, and GitHub Copilot.
Installation
npm install -g @httpdrop/mcp-serverConfiguration
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"httpdrop": {
"command": "httpdrop-mcp",
"env": {
"HTTPDROP_TOKEN": "your-api-token",
"HTTPDROP_URL": "https://httpdrop.dev"
}
}
}
}Cursor
In .cursor/mcp.json or ~/.cursor/mcp.json:
{
"mcpServers": {
"httpdrop": {
"command": "httpdrop-mcp",
"env": {
"HTTPDROP_TOKEN": "your-api-token"
}
}
}
}Generate your API token at: Dashboard → avatar → API Tokens.
Available tools
| Tool | Description |
|------|-------------|
| list_endpoints | List all mock endpoints |
| get_endpoint | Get endpoint details (config, rules, stats) |
| create_endpoint | Create a new mock endpoint |
| get_requests | Get latest captured requests for an endpoint |
| update_response | Update the mock response (status, body, headers) |
| replay_request | Replay a request to a target URL |
Environment variables
| Variable | Description |
|----------|-------------|
| HTTPDROP_TOKEN | API token (required) |
| HTTPDROP_URL | Server URL (default: https://httpdrop.dev) |
License
MIT
