KingBuilds MCP Server
This is a production-ready MCP server providing four core tools for sandboxed file operations, web scraping, data transformation, and authenticated HTTP requests.
File Operations: Read, write, and list files within a sandboxed directory (
/app), with path traversal protection, size limits, and automatic parent directory creation.Web Scraping: Fetch public web pages to extract titles, visible text (scripts/styles stripped), outgoing links, or specific elements via CSS selectors. Includes SSRF protection blocking private/loopback addresses.
Data Transformation: Convert between JSON and CSV formats, and perform aggregations (sum, average, min, max, count, unique) on structured or flat data.
HTTP Requests: Make authenticated HTTP requests (GET, POST, PUT, PATCH, DELETE, HEAD) to public APIs with custom headers, query params, and flexible request bodies. Supports server-managed authentication (Bearer token or API key) and SSRF protection on every redirect hop.
Click on "Install 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., "@KingBuilds MCP Serverscrape the title and links from https://example.com"
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.
KingBuilds MCP Server
Production-ready reference MCP server with 4 tools:
file_ops — Sandboxed file read/write/list within allowed directory
web_scraper — Clean HTML extraction (title, text, links, CSS selectors)
data_transform — JSON↔CSV conversion + aggregation (sum/avg/count/min/max/filter/sort)
http_request — Authenticated HTTP requests with SSRF protection
Architecture
This server is built on the Soliven architecture — the autonomous build agent running on this VPS. Shared patterns:
Component | Purpose | Soliven Reference |
| Path traversal protection, SSRF-safe URL validation | Soliven sandbox |
| Safe HTTP client with redirect validation | Soliven outbound requests |
| Pydantic Settings with | Soliven config |
Dual transport | stdio (Claude Desktop) + HTTP/SSE (web) | Soliven multi-interface |
Structured logging | Consistent format across all tools | Soliven observability |
Related MCP server: Enhanced Fetch MCP
Quickstart
# Install
pip install -e .
# Run stdio transport (for Claude Desktop)
mcp-server-stdio
# Run HTTP/SSE server
mcp-server-httpConfiguration
Environment variables:
ALLOWED_DIR— Sandbox directory for file operations (default:./data)MCP_TRANSPORT—stdioorstreamable-http(default:streamable-http)MCP_HOST— Host to bind (default:0.0.0.0)MCP_PORT— Port for HTTP transport (default:8080)MAX_FILE_BYTES— Max file size for read/write (default:1048576)REQUEST_TIMEOUT— HTTP request timeout seconds (default:30)
Tools
file_ops
read_file(path: str)— Read UTF-8 text filewrite_file(path: str, content: str, overwrite: bool)— Write filelist_directory(path: str)— List directory contents
Example prompts:
"Read the README.md file and summarize it"
"Create a file called todo.txt with my task list"
"List all files in the data directory"
web_scraper
fetch_page(url: str, selector: str = None)— Fetch and extract HTML content
Example prompts:
"Fetch the latest headlines from Hacker News"
"Get the title and main text from this article URL"
"Extract all links from this page matching
.titleline a"
data_transform
transform_data(data: list, operation: str, **kwargs)— Transform data
Example prompts:
"Convert this JSON data to CSV"
"Calculate the average score from this data"
"Sum these numbers: [10, 20, 30, 40, 50]"
"Count unique values in the 'category' field"
http_request
http_request(method: str, url: str, headers: dict, body: dict, auth: dict)— Make HTTP requests
Example prompts:
"Call this API endpoint and return the JSON response"
"POST this data to the webhook with Bearer auth"
Example Tool Calls (MCP JSON-RPC)
file_ops
{"name": "read_file", "arguments": {"path": "README.md"}}
{"name": "write_file", "arguments": {"path": "notes.txt", "content": "Hello from MCP!", "overwrite": true}}
{"name": "list_directory", "arguments": {"path": "."}}web_scraper
{"name": "scrape_web_page", "arguments": {"url": "https://example.com"}}
{"name": "scrape_web_page", "arguments": {"url": "https://news.ycombinator.com", "selector": ".titleline a", "max_links": 10}}data_transform
{"name": "transform_data", "arguments": {"data": "[{\"name\": \"Alice\", \"age\": 30}, {\"name\": \"Bob\", \"age\": 25}]", "input_format": "json", "operation": "convert", "output_format": "csv"}}
{"name": "transform_data", "arguments": {"data": "[10, 20, 30, 40, 50]", "input_format": "json", "operation": "sum"}}
{"name": "transform_data", "arguments": {"data": "[{\"score\": 85}, {\"score\": 92}, {\"score\": 78}]", "input_format": "json", "operation": "average", "field": "score"}}http_request
{"name": "http_request", "arguments": {"method": "GET", "url": "https://api.github.com/users/octocat"}}
{"name": "http_request", "arguments": {"method": "POST", "url": "https://api.example.com/data", "headers": {"Content-Type": "application/json"}, "body": {"key": "value"}, "auth": {"scheme": "bearer", "token": "your-token-here"}}}Claude Desktop Config
{
"mcpServers": {
"kingbuilds-mcp": {
"command": "mcp-server-stdio",
"env": {
"ALLOWED_DIR": "/home/user/data"
}
}
}
}Deployment
# Docker
docker-compose up -d
# Systemd
sudo cp deploy/systemd/claude-mcp-server.service /etc/systemd/system/
sudo systemctl enable --now claude-mcp-serverSecurity
File operations sandboxed to
ALLOWED_DIRwith path traversal protectionSSRF protection: private/loopback/link-local IPs blocked by default
Request size/timeouts enforced
Input validation on all tool inputs
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Emberphoenix33/kingbuilds-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server