Websharp
FreeNot checkedProvides web search and readable page extraction tools via MCP, using SearXNG metasearch and SmartReader content extraction, with Docker support for local deplo
About
Provides web search and readable page extraction tools via MCP, using SearXNG metasearch and SmartReader content extraction, with Docker support for local deployment.
README
WebSharp is a Model Context Protocol (MCP) server written in C# (.NET 9) that exposes web search and readable page extraction tools over the streamable HTTP transport. It pairs a SearXNG metasearch instance with the SmartReader content extraction library and ships with Docker assets so you can run everything locally with one command.
Highlights
- Streamable HTTP MCP endpoint served by ASP.NET Core via
ModelContextProtocol.AspNetCore. - SearXNG-backed metasearch tool that returns both a readable summary and structured JSON metadata.
- SmartReader-powered page reader tools for single URLs or batches, ideal for grounding and fact checking workflows.
- Container-first development story with Docker Compose and an inspector-ready
.mcp.jsonprofile.
Available MCP tools
web_search
| Parameter | Type | Default | Notes |
|---|---|---|---|
query |
string | required | Free-form search string submitted to the configured search backend (defaults to SearXNG). |
limit |
integer | 10 | Maximum number of results to surface in the text summary. When set to 0 or negative, the parameter is omitted and the backend decides the result count. |
categories |
string | "general" |
Comma-separated categories forwarded to the backend (for SearXNG, examples include general,it,science). |
language |
string | "en" |
Language tag forwarded to the backend. When using the default SearXNG instance, see its language list. |
Response
- Text summary showing the top results, related suggestions, and any unresponsive engines.
structuredContentcontains a JSON object with:query: echo of the evaluated query string.items: array of result objects (title,url,content,engine/engines,category,positions,parsed_url).suggestions: related queries returned by the backend (SearXNG surfaces them when available).unresponsive_engines: list of engines that timed out or failed, with optional messages.error: present when the search could not be completed.
web_page_read
| Parameter | Type | Default | Notes |
|---|---|---|---|
urls |
array |
required | One or more absolute HTTP/HTTPS URLs to fetch and parse. |
Response
- When a single URL is provided, returns the article title, excerpt, a preview of the readable text (~800 characters), and footer metadata (source URL, detected language).
- When multiple URLs are provided, the summary includes overall success/failure counts, per-page details (title, URL, full text, language), and error messages for any failures. Requests run concurrently and honor the MCP cancellation token.
structuredContentis not populated; all data is returned in the text block.
Run everything with Docker Compose
- Install Docker Desktop (or another OCI-compatible runtime) and ensure it is running.
- From the repository root, start both the SearXNG dependency and the MCP server:
docker compose -f docker-compose.yaml --project-name websharp up -d(add--buildon the first run or whenever the Dockerfile changes). - Wait until the
websharp-mcpcontainer reportsNow listening on: http://0.0.0.0:8080. - The MCP server is now reachable at
http://localhost:8081(mapped from container port 8080). SearXNG is available athttp://localhost:8080/for inspection.
Build the Docker image manually
Run the server image build without Docker Compose from the repository root:
docker build -f .\src\WebSharp.Mcp.Http\Dockerfile -t jessegador/websharp-mcp:v0.99.0-rc2 --no-cache src
Update -t to match the image registry and tag you plan to publish.
Connect with the MCP Inspector
- Start (or keep running) the compose stack above.
- Launch the Inspector with the included client profile:
npx -y @modelcontextprotocol/inspector --config .\.mcp.json --server websharp-mcp - Copy the printed token into the Inspector UI by opening
http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=<token>in your browser. - In the Inspector UI, pick the
websharp-mcpserver to explore the available tools and try calls right away.
Running from source
- Install the .NET 9 SDK.
- Ensure you have access to a SearXNG endpoint. The easiest option is to keep using the Docker Compose service and export
Searxng__BaseUrltohttp://localhost:8080before starting the app. - Launch the server:
dotnet run --project src/WebSharp.Mcp.Http/WebSharp.Mcp.Http.csproj --urls http://localhost:8081 - The MCP endpoint listens on
/. InDEBUGbuilds you can hit/__routesto inspect the configured ASP.NET endpoints.
Configuration
| Environment variable | Default | Description |
|---|---|---|
ASPNETCORE_URLS |
http://0.0.0.0:8080 (Docker) |
Listening address(es) for the HTTP server. Override to change the exposed MCP port. |
Searxng__BaseUrl |
http://searxng:8080 |
Base URL of the SearXNG instance. Required if you are not running the bundled Docker service. Must be an absolute URI. |
Cors__AllowAnyOrigin |
true |
Permit all origins. Set to false when you want to limit callers via Cors__AllowedOrigins__0=<origin> style keys. |
Cors__AllowAnyHeader |
true |
Allow all request headers. |
Cors__AllowAnyMethod |
true |
Allow all HTTP methods. |
Cors__AllowCredentials |
false |
When true, credentials are accepted and you must explicitly enumerate origins. |
Cors__AllowedOrigins__{n} |
(empty) | Optional origin allowlist entries when AllowAnyOrigin is false. |
Cors__AllowedHeaders__{n} |
(empty) | Optional header allowlist. |
Cors__AllowedMethods__{n} |
(empty) | Optional method allowlist. |
All configuration values can also be supplied via appsettings.json/appsettings.Development.json. The Docker Compose definition mounts the correct defaults for local experimentation.
Using a different SearXNG instance
- Point
Searxng__BaseUrlat your hosted SearXNG deployment (for examplehttps://searxng.example.com). - Make sure the endpoint you target exposes the SearXNG Search API and permits the categories/languages you request.
- Consider adjusting the bundled
searxng/settings.ymlto tune activated engines, safe search, or rate limits before publishing to the MCP registry.
Security notes
- The HTTP transport does not include authentication. Run behind a reverse proxy, tunnel, or VPN when exposing beyond localhost.
- CORS defaults to permissive settings for debugging. Tighten them before deploying to shared environments.
- The server respects MCP cancellation tokens, and page fetches enforce short HTTP timeouts to avoid hanging client sessions.
Registry metadata
- Name:
websharp-mcp - Transport:
streamable-http - Endpoint:
/ - See
.mcp.jsonfor a ready-to-use inspector profile.
License
This project is available under the MIT license (see LICENSE).
Installing Websharp
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/jgador/websharpFAQ
Is Websharp MCP free?
Yes, Websharp MCP is free — one-click install via Unyly at no cost.
Does Websharp need an API key?
No, Websharp runs without API keys or environment variables.
Is Websharp hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Websharp in Claude Desktop, Claude Code or Cursor?
Open Websharp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Websharp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
