Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"owl-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Owl MCP Server 是一个基于 Rust 开发的 Model Context Protocol (MCP) 服务器集合,提供多种功能模块,包括网页搜索、HTTP API 调用和图像问答等服务。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / developer-tools
Web and local search using Brave Search API
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Production ready MCP server with real-time search, extract, map & crawl.
MCP Security Weekly
Get CVE alerts and security updates for Owl Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Owl MCP Server 是一个基于 Rust 开发的 Model Context Protocol (MCP) 服务器集合,提供多种功能模块,包括网页搜索、HTTP API 调用和图像问答等服务。
本项目实现了多个 MCP 服务器模块,每个模块都可通过标准 MCP 协议与 AI 应用(如 Claude、ChatGPT 等)进行交互,为 AI 提供各种工具和数据源。
web-search - 网页搜索和内容提取服务
http-api-call - HTTP API 调用服务
image-qa-online - 在线图像问答服务
rmcp - Rust MCP 协议实现tokio - 异步运行时serde - 序列化/反序列化reqwest - HTTP 客户端scraper - HTML 解析headless_chrome - 动态网页抓取clap - 命令行参数解析# 克隆项目
git clone <repository-url>
cd owl-mcp-server
# 构建所有模块
cargo build --release
# 构建 web-search 模块
cargo build -p web-search --release
# 构建 http-api-call 模块
cargo build -p http-api-call --release
# 构建 image-qa-online 模块
cargo build -p image-qa-online --release
# 以 MCP 服务模式启动
./target/release/web-search mcp
# 执行网页搜索
./target/release/web-search search -q "人工智能发展" -c 10
# 提取网页内容
./target/release/web-search extract -u "https://example.com"
# 以 HTTP 服务启动
./target/release/web-search http -p 10020
# 以 MCP 服务模式启动
./target/release/http-api-call
# 以 MCP 服务模式启动
./target/release/image-qa-online