MCP Server
A server that enables AI assistants like Claude to safely run Python code and access websites, processing data for better AI understanding while providing helpful error messages.
tcpipuk
README
MCP Server
A server that lets AI assistants like Claude safely use external tools - like running Python code or accessing websites. It processes data to make it easier for AI to understand, and provides helpful error messages when things go wrong, so bots are more empowered to solve their own problems.
- 🛠️ What tools does this server offer?
- 🏎️ How can I run it?
- 🔌 How to connect
- 📚 Learn more about MCP
- 📄 License
🛠️ What tools does this server offer?
Once running, your AI assistant will be able to:
Tool | What it can do |
---|---|
Python | Run Python code safely in a sandbox. Includes popular packages like numpy and pandas for data analysis, and can either run code or check it for errors. |
Web | Access websites and process their content. Can convert pages to markdown for easy reading, get the raw content, or extract links to help navigate through documentation. |
🏎️ How can I run it?
🐋 Using Docker (recommended)
-
Install Docker if you haven't already
-
Create a file called
docker-compose.yml
with:services: mcp-server: environment: - SSE_HOST=0.0.0.0 - SSE_PORT=8080 - USER_AGENT=CustomAgent/1.0 image: ghcr.io/tcpipuk/mcp-server:latest restart: unless-stopped stop_grace_period: 1s
-
Run
docker compose up
to start the server
Note: The server will automatically use network mode (SSE) when you set
SSE_HOST
andSSE_PORT
. This is what you want for using it with LibreChat.
Most people use this with either:
- Claude Desktop - connects directly to your computer
- LibreChat - connects over the network
For LibreChat, add this to your librechat.yaml
to connect:
mcpServers:
mcp-server:
iconPath: "/path/to/icon.png"
type: sse
url: http://mcp-server:8080/sse
💻 Running locally
-
Install
uv
(requires Python 3.13+):curl -LsSf https://astral.sh/uv/install.sh | sh
Note: If you already have
uv
installed, you can update it by running:uv self update
-
Create and activate a virtual environment:
uv venv source .venv/bin/activate # Linux/macOS # or .venv\Scripts\activate # Windows
-
Install dependencies from the lockfile:
uv sync
-
Run the server:
mcp-server --sse-host 0.0.0.0 --sse-port 3001 --user-agent "CustomAgent/1.0"
Available arguments:
--sse-host
: SSE listening address (e.g.0.0.0.0
)--sse-port
: SSE listening port (e.g.3001
)--user-agent
: Custom User-Agent string for HTTP requests
Note: If either of the SSE arguments are not provided (or the
SSE_HOST
orSSE_PORT
environment variables are not set) the server will automatically assumestdio
mode and listen on standard I/O.
🔌 How to connect
You can connect to the server in two ways:
Method | What it means | When to use it |
---|---|---|
Network connection (SSE) | The server runs as a service that other apps can connect to | Best for most users - especially with LibreChat |
Direct connection (stdio) | The server runs directly on your computer | Useful for testing or development |
📚 Learn more about MCP
Here are a few resources to get you started:
📄 License
This project is licensed under the GPLv3. See the LICENSE file for full details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.