Node.js + TypeScript MCP 서버 구현: - 5개 도구: inspect_page, inspect_site, get_inspection, get_issues, get_history - 듀얼 트랜스포트: stdio (Claude Desktop) + Streamable HTTP (Docker/원격) - i18n 지원 (영어/한국어) - Docker 통합 (port 3100) + Nginx /mcp 프록시 - Smithery 레지스트리 배포 설정 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
870 B
JSON
41 lines
870 B
JSON
{
|
|
"name": "web-inspector-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Web Inspector — inspect web pages for HTML/CSS, accessibility (WCAG/KWCAG), SEO, and performance/security",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"web-inspector-mcp": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"mcp-server",
|
|
"web-inspector",
|
|
"accessibility",
|
|
"wcag",
|
|
"kwcag",
|
|
"seo",
|
|
"html"
|
|
],
|
|
"author": "yakenator",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
"express": "^4.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|