mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-07-25 07:41:01 +02:00
`npx -y @webclaw/mcp` downloads the prebuilt webclaw-mcp binary (verified against the release SHA256SUMS), caches it, and runs it as an MCP stdio server. This makes webclaw introspectable in MCP registries (Glama/Smithery/MCP registry) and installable in any MCP client with no Rust build. - packages/webclaw-mcp: zero-dep launcher (.mjs) + package.json + README - README/CLAUDE/examples/smithery: mcpServers config -> npx -y @webclaw/mcp - registry: point the MCP-registry entry (server.json) at @webclaw/mcp, the real stdio server, instead of create-webclaw (a scaffolder); drop create-webclaw's mcpName claim so ownership isn't duplicated - CHANGELOG: unreleased entry create-webclaw stays as the auto-detect installer. .mcp.json is intentionally left pointing at the local install path until @webclaw/mcp is published to npm. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
39 lines
889 B
JSON
39 lines
889 B
JSON
{
|
|
"name": "@webclaw/mcp",
|
|
"version": "0.1.0",
|
|
"description": "Zero-install launcher for the webclaw MCP server: web extraction and anti-bot access for AI agents. Runs `npx @webclaw/mcp`.",
|
|
"type": "module",
|
|
"bin": {
|
|
"webclaw-mcp": "./webclaw-mcp.mjs"
|
|
},
|
|
"mcpName": "io.github.0xMassi/webclaw",
|
|
"files": [
|
|
"webclaw-mcp.mjs",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"author": "0xMassi",
|
|
"homepage": "https://webclaw.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/0xMassi/webclaw.git",
|
|
"directory": "packages/webclaw-mcp"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/0xMassi/webclaw/issues"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"webclaw",
|
|
"web-scraping",
|
|
"web-extraction",
|
|
"ai-agents",
|
|
"cloudflare",
|
|
"anti-bot",
|
|
"llm"
|
|
]
|
|
}
|