Quick Start
Public MCP server for LLMs. Compatible with Ollama, LM Studio, VSCode, Cursor AI and more.
24/7 Online
Public Access
35+ Tools
Multi-Language
VS Code Config
Add to VS Code settings.json:
{
"mcp.servers": {
"rl-dev-mcp": {
"command": "node",
"args": [
"-e",
"const http = require('http'); http.get('http://mcp.rl-dev.de/health', () => {});"
]
}
}
}
Cursor AI Config
⚠️ WICHTIG: Alte Konfiguration entfernen!
1. Download mcp-client.js to your project root
2. Add to Cursor settings.json (Cursor → Settings → Open Settings JSON):
{
"mcpServers": {
"rl-dev-mcp": {
"command": "node",
"args": [
"mcp-client.js"
],
"env": {
"MCP_SERVER_URL": "http://mcp.rl-dev.de/mcp"
}
}
}
}
⚠️ Stelle sicher, dass der alte Befehl mit node -e const http... entfernt wurde!
💡 Tipp: Teste den Server mit Test Client
✅ Server Status: Online & Funktioniert!
HTTP Transport Config
For clients supporting HTTP transport:
{
"mcpServers": {
"rl-dev-mcp": {
"url": "http://mcp.rl-dev.de/mcp",
"transport": "http",
"capabilities": {
"tools": true,
"resources": true,
"prompts": true
}
}
}
}
Available Tools
text_summarize
text_extract
text_transform
regex_match
code_analyze
code_format
json_parse
json_stringify
base64_encode
base64_decode
url_fetch
url_parse
math_calculate
math_random
hash_generate
uuid_generate
date_format
date_now
file_read
file_write
file_delete
file_copy
file_move
file_list
file_mkdir
file_rmdir
file_stat
file_exists
file_chmod
install_package
uninstall_package
list_packages
execute_code
code_analyze_language
code_compile
code_lint
code_format_language
API Endpoints
- POST /mcp - MCP protocol (JSON-RPC 2.0)
- GET /health - Health check
- WebSocket / - Real-time MCP
Example Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "text_summarize",
"arguments": {
"text": "Your text...",
"maxLength": 200
}
},
"id": 1
}