Labsco
KazikGolinski logo

Local Network Request MCP Server

from KazikGolinski

Sends HTTP requests to endpoints on the local network.

๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Local Network Request MCP Server

An MCP server that sends HTTP requests to endpoints on your local network.

Features

  • Send HTTP requests (GET, POST, PUT, DELETE, etc.) to local network endpoints
  • Support for JSON payloads and custom headers
  • Comprehensive error handling for timeouts and connection issues
  • Built with FastMCP framework

Connecting to Claude

Add this configuration to your Claude MCP settings:

Using Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "local-network-requests": {
      "command": "uv",
      "args": ["run", "python3", "/absolute/path/to/main.py"],
      "cwd": "/Users/kazikgolinski/Documents/Projekty_priv/MPCtoAPI"
    }
  }
}

Using Claude CLI

Add the MCP server:

claude mcp add local-network-requests uv run python3 /Users/kazikgolinski/Documents/Projekty_priv/MPCtoAPI/main.py

Or find your uv path and use it:

which uv
claude mcp add local-network-requests /full/path/to/uv run python3 /Users/kazikgolinski/Documents/Projekty_priv/MPCtoAPI/main.py

Example

Send a POST request to http://192.168.1.100:8080 with JSON payload {"action": "status"}