You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+43-39
Original file line number
Diff line number
Diff line change
@@ -1,51 +1,56 @@
1
1
# MCP Server
2
2
3
-
This server offers tools that AI assistants can interact with safely to operate external tools and
4
-
services using the Model Context Protocol (MCP). It pre-processes data to save tokens and make it
5
-
easier for LLMs to understand, and provides informative errors when things go wrong.
3
+
A server that lets AI assistants like Claude safely use external tools - like running Python code or
4
+
accessing websites. It processes data to make it easier for AI to understand, and provides helpful
5
+
error messages when things go wrong, so bots are more empowered to solve their own problems.
6
6
7
7
1.[🛠️ What tools does this server offer?](#️-what-tools-does-this-server-offer)
8
8
2.[🏎️ How can I run it?](#️-how-can-i-run-it)
9
-
1.[🐋 Docker Compose](#-docker-compose)
10
-
2.[💻 Local Development](#-local-development)
11
-
3.[🔌 Which connection method should I use?](#-which-connection-method-should-i-use)
12
-
4.[📚 Where can I read more about MCP?](#-where-can-i-read-more-about-mcp)
9
+
1.[🐋 Using Docker (recommended)](#-using-docker-recommended)
10
+
2.[💻 Running locally](#-running-locally)
11
+
3.[🔌 How to connect](#-how-to-connect)
12
+
4.[📚 Learn more about MCP](#-learn-more-about-mcp)
13
13
5.[📄 License](#-license)
14
14
15
15
## 🛠️ What tools does this server offer?
16
16
17
-
The server provides tools for web content retrieval and code execution:
17
+
Once running, your AI assistant will be able to:
18
18
19
-
| Tool |Description|
19
+
| Tool |What it can do|
20
20
|------|-------------|
21
-
|[python](docs/python.md)|Executes or lints Python code in a resource-limited sandbox. Includes useful packages like numpy and pandas, with options to either run the code or check it with Ruff. |
22
-
|[web](docs/web.md)|Accesses and processes content from a given URL. Depending on the mode ('markdown', 'raw', or 'links'), it can clean and format page content into markdown, return the raw unprocessed data, or extract internal links with their anchor text to facilitate further navigation. |
21
+
|[Python](docs/python.md)|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. |
22
+
|[Web](docs/web.md)|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. |
23
23
24
24
## 🏎️ How can I run it?
25
25
26
-
### 🐋 Docker Compose
26
+
### 🐋 Using Docker (recommended)
27
+
28
+
1.[Install Docker](https://docs.docker.com/engine/install/) if you haven't already
29
+
2. Create a file called `docker-compose.yml` with:
30
+
31
+
```yaml:docker-compose.yml
32
+
services:
33
+
mcp-server:
34
+
environment:
35
+
- SSE_HOST=0.0.0.0
36
+
- SSE_PORT=8080
37
+
- USER_AGENT=CustomAgent/1.0
38
+
image: ghcr.io/tcpipuk/mcp-server:latest
39
+
restart: unless-stopped
40
+
stop_grace_period: 1s
41
+
```
27
42
28
-
[Install Docker](https://docs.docker.com/engine/install/) if you haven't already, then put this in
29
-
a `docker-compose.yml` and run `docker compose up` to start it:
43
+
3. Run `docker compose up` to start the server
30
44
31
-
```yaml:docker-compose.yml
32
-
services:
33
-
mcp-server:
34
-
environment:
35
-
- SSE_HOST=0.0.0.0
36
-
- SSE_PORT=8080
37
-
- USER_AGENT=CustomAgent/1.0
38
-
image: ghcr.io/tcpipuk/mcp-server:latest
39
-
restart: unless-stopped
40
-
stop_grace_period: 1s
41
-
```
45
+
> **Note**: The server will automatically use network mode (SSE) when you set `SSE_HOST` and
46
+
> `SSE_PORT`. This is what you want for using it with LibreChat.
47
+
48
+
Most people use this with either:
42
49
43
-
> **Note**: If `SSE_HOST` and/or `SSE_PORT` environment variables are not set, the server will
44
-
> automatically use `stdio` mode and listen on standard input/output.
50
+
-[Claude Desktop](https://modelcontextprotocol.io/quickstart/user) - connects directly to your computer
51
+
-[LibreChat](https://www.librechat.ai/docs/local) - connects over the network
45
52
46
-
Normally you'd run this alongside [Claude Desktop](https://modelcontextprotocol.io/quickstart/user)
47
-
(using stdio mode) or using [LibreChat](https://www.librechat.ai/docs/local) (using SSE mode), just
48
-
putting something like this in your `librechat.yaml` to tell it how to talk to this MCP server:
53
+
For LibreChat, add this to your `librechat.yaml` to connect:
49
54
50
55
```yaml:librechat.yaml
51
56
mcpServers:
@@ -55,7 +60,7 @@ mcpServers:
55
60
url: http://mcp-server:8080/sse
56
61
```
57
62
58
-
### 💻 Local Development
63
+
### 💻 Running locally
59
64
60
65
1. Install `uv` (requires Python 3.13+):
61
66
@@ -100,17 +105,16 @@ Available arguments:
100
105
> environment variables are not set) the server will automatically assume `stdio` mode and
101
106
> listen on standard I/O.
102
107
103
-
## 🔌 Which connection method should I use?
108
+
## 🔌 How to connect
104
109
105
-
You can run it using Docker, connect through standard input/output on the local machine, or use SSE
106
-
over a network, which means it works directly with LibreChat and other MCP-compatible chat systems.
110
+
You can connect to the server in two ways:
107
111
108
-
| Method |Best for | Notes|
109
-
|--------|----------|--------|
110
-
|Standard I/O (stdio) |Local development and testing | Direct process communication. Not recommended for Docker as it requires sharing the Docker socket.|
111
-
|Server-Sent Events (SSE) |Production deployment | Runs as a network service. Recommended for Docker and cloud environments.|
112
+
| Method |What it means | When to use it|
113
+
|--------|---------------|----------------|
114
+
|Network connection (SSE) |The server runs as a service that other apps can connect to | Best for most users - especially with LibreChat|
115
+
|Direct connection (stdio) |The server runs directly on your computer | Useful for testing or development|
0 commit comments