FetchMcpServer 0.1.4-beta

This is a prerelease version of FetchMcpServer.

                    
dotnet tool install --global FetchMcpServer --version 0.1.4-beta
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local FetchMcpServer --version 0.1.4-beta
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=FetchMcpServer&version=0.1.4-beta&prerelease
                    
nuke :add-package FetchMcpServer --version 0.1.4-beta
                    

Fetch Mcp Server

This is a minimal Model Context Protocol (MCP) stdio server that helps to access internet.

CI

Requirements

  • .NET 10 SDK (preview) to build/run the net10.0 target.
  • Network egress to the URLs you plan to fetch.

Quickstart

  1. Install the .NET 10 SDK and restore packages:
    • dotnet build Src/Fetch.Mcp.Server.csproj
  2. Run the server over stdio:
    • dotnet run --project Src/Fetch.Mcp.Server.csproj
  3. Wire it into an MCP-compatible client. Example: VS Code, add the following snippet in mcp.json folder inside .vscode folder
    {
       "servers": {
           "fetch-mcp-server": {
               "type": "stdio",
               "command": "dotnet",
               "args": [
                   "run",
                   "--project",
                   "${workspaceFolder}/Src/"
               ]
           }
       },
       "inputs": []
    }
    
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.