Java implementation of MCP Server for Crawl4ai
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jcrawl4ai-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.
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 browser
Browser automation with Puppeteer for web scraping and testing
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for Jcrawl4ai Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
jcrawl4ai-mcp-server is a Spring Boot-based MCP server that interacts with the Crawl4ai API to perform web crawling. The main functionalities include:
Configure the following properties in the src/main/resources/application.properties file:
cawl4ai.base-url: Base URL of the Crawl4ai server.cawl4ai.api-token: API token for the Crawl4ai server.Example configuration:
cawl4ai.base-url=http://your-cral4ai-server-url:11235
cawl4ai.api-token=your-api-token
The project depends on the following libraries:
Build and run the project using Maven:
mvn clean install
java -jar target/jcawl4ai-mcp-server-1.0.0.jar
You can download the jar file from this link directly.
crawl Methodurls: Array of target website URLs.strategy: Crawl strategy.max_depth: Maximum depth.output_format: Output format.task MethodtaskId: Task ID.Log file path: ./target/mcp-stdio-server.log.
{
"mcpServers": {
"jcawl4ai-mcp-server": {
"autoApprove": [
"crawl",
"task"
],
"disabled": false,
"timeout": 60,
"command": "java",
"args": [
"-jar",
"/path/to/your/jar/file/jcawl4ai-mcp-server-1.0.0.jar"
],
"transportType": "stdio"
}
}
}
If you have any questions or suggestions, please contact Ken Ye.
Java 实现的 MCP 服务器,用于与 Crawl4ai API 进行交互。
jcrawl4ai-mcp-server 是一个基于 Spring Boot 的 MCP 服务器,用于调用 Crawl4ai API 进行网页爬取。该项目的主要功能包括:
在 src/main/resources/application.properties 文件中配置以下属性:
cawl4ai.base-url:Crawl4ai 服务器的基础 URL。cawl4ai.api-token:Crawl4ai 服务器的 API 令牌。示例配置:
cawl4ai.base-url=http://your-cral4ai-server-url:11235
cawl4ai.api-token=your-api-token
项目依赖于以下库:
使用 Maven 构建并运行项目:
mvn clean install
java -jar target/jcawl4ai-mcp-server-1.0.0.jar
您可以从以下链接中直接下载jar包: link
crawl 方法