TdxClaw-compatible MCP Server
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., "@TdxClaw-compatible MCP Serverfetch 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.
TdxClaw-compatible MCP Server
独立的本地 MCP Server,复刻 TdxClaw (openclaw) 的数据请求能力。无需安装 TdxClaw 即可让你的 agent 通过 MCP 协议调用网页抓取、搜索和 HTTP 请求工具。
提供的工具
工具 | 说明 |
| 抓取网页内容,自动转换为 Markdown 或纯文本,带 SSRF 防护 |
| 使用 DuckDuckGo 搜索网页,无需 API Key |
| 通用 HTTP 请求工具,支持 GET/POST/PUT/PATCH/DELETE,自定义 Headers 和 Body |
Related MCP server: tinyfish-search-fetch-mcp
快速开始
前置条件
uv(TdxClaw 自带:
C:\TdxClaw\resources\bin\uv.exe)或 Python 3.10+
方式一:使用启动脚本(推荐)
start.cmd首次运行会自动创建虚拟环境并安装依赖。
方式二:手动运行
cd tdx-mcp-server
# 创建虚拟环境并安装依赖
uv venv
uv pip install "mcp[cli]>=1.0.0" "httpx>=0.27.0" "beautifulsoup4>=4.12.0" "markdownify>=0.13.0" "duckduckgo-search>=6.0.0"
# 启动 stdio 模式(大多数 MCP 客户端)
.venv\Scripts\python.exe server.py
# 或启动 HTTP 模式(openclaw 风格的 agent)
.venv\Scripts\python.exe server.py --http --port 31868连接你的 Agent
Stdio 模式(适用于大多数 MCP 客户端)
在你的 agent 的 MCP 配置中添加:
{
"mcpServers": {
"tdx-mcp": {
"command": "C:\\path\\to\\tdx-mcp-server\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\tdx-mcp-server\\server.py"]
}
}
}HTTP 模式(适用于 openclaw 等支持 HTTP MCP 的 agent)
先启动 HTTP 服务:
.venv\Scripts\python.exe server.py --http --port 31868然后在 agent 配置中指向 http://127.0.0.1:31868/mcp。
OpenClaw 配置示例
在 openclaw.json 中添加:
{
"mcp": {
"servers": {
"tdx-mcp": {
"type": "http",
"url": "http://127.0.0.1:31868/mcp"
}
}
}
}或使用 stdio:
{
"mcp": {
"servers": {
"tdx-mcp": {
"command": "C:\\path\\to\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\server.py"]
}
}
}
}工具参数说明
web_fetch
{
"url": "https://example.com",
"extractMode": "markdown",
"maxChars": 20000
}web_search
{
"query": "搜索关键词",
"maxResults": 5,
"region": "cn-zh"
}http_request
{
"url": "https://api.example.com/data",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
"body": "{\"key\": \"value\"}",
"timeout": 30,
"maxChars": 20000
}与 TdxClaw MCP 的对比
特性 | TdxClaw MCP | 本 Server |
传输协议 | HTTP (Streamable HTTP) | Stdio + HTTP |
默认端口 | 31868 | 31868 (HTTP 模式) |
web_fetch | ✅ | ✅ |
web_search | ✅ (需配置 API Key) | ✅ (DuckDuckGo, 免费) |
http_request | ❌ | ✅ |
认证 | Bearer Token | 无(本地使用) |
SSRF 防护 | ✅ | ✅ |
依赖 | TdxClaw 完整安装 | 仅 Python + 几个包 |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceA local web search MCP server that uses stealth Chromium to bypass CAPTCHAs and bot blocks, supporting Google and DuckDuckGo with automatic fallback.18MIT
- AlicenseAqualityBmaintenanceA lightweight MCP server enabling web search and content fetching via TinyFish Free Access API with support for single and burst URL fetch.3MIT
- FlicenseDqualityDmaintenanceA local MCP server providing free network access capabilities including HTTP requests, web search, webpage content extraction, and optional screenshots, designed for integration with Claude Desktop or Claude Code.6
- AlicenseBqualityAmaintenanceA self-hosted MCP server providing web search and URL fetching tools, running locally without external API keys or accounts.2MIT
Related MCP Connectors
Free remote MCP server for fetching public web pages through a rotating proxy pool.
MCP server for ScanMalware.com URL scanning, malware detection, and analysis.
An MCP server for deep research or task groups
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/seanWeb3dDev/financial-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server