anvyl-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@anvyl-mcpfetch https://example.com and show the raw HTML"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
A minimal MCP server built from scratch — no SDK.
Implements the Model Context Protocol (
2025-03-26) over both Streamable HTTP and WebSocket, with a clean separation between transport, protocol, registry, and execution layers.
Related MCP server: Modular MCP Server
Tools
Tool | Description |
| Run a shell command |
| Read a file from disk |
| Write a file to disk |
| Fetch a URL |
Quickstart
uv sync
python serve.pyConnect via MCP Inspector:
npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP → http://127.0.0.1:8000/mcp
# Transport: WebSocket → ws://127.0.0.1:8000/wsArchitecture
Transport and protocol are fully decoupled. Both HTTP and WebSocket
adapters call the same dispatch() — adding a new transport means
writing a thin adapter, not touching protocol logic.
Tool isolation is set per-tool: shell runs in an isolated subprocess
with a timeout; trusted tools run inline.
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Host your MCP tool over streamable HTTP in one command.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA simple MCP Server with shell execution capabilities that can be run locally with Ngrok tunneling or hosted in an Ubuntu 24 Docker container.4MIT
- FlicenseBqualityDmaintenanceA config-driven, zero-dependency MCP server with plugin architecture that enables filesystem operations, shell commands, HTTP requests, and utilities through simple JSON configuration.31-
- AlicenseNot gradedqualityDmaintenanceA modular MCP server providing file operations, web search, URL scraping, and sandboxed command execution for LLM interactions.1MIT
- AlicenseAqualityDmaintenanceA Python MCP server implemented from scratch, providing tool execution capabilities like system time and file hashing via stdio or HTTP transport.21MIT