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>
25 lines
618 B
YAML
25 lines
618 B
YAML
startCommand:
|
|
type: stdio
|
|
configSchema:
|
|
type: object
|
|
properties:
|
|
apiUrl:
|
|
type: string
|
|
description: "Web Inspector API base URL"
|
|
default: "https://web-inspector.yakenator.io"
|
|
language:
|
|
type: string
|
|
description: "Default language (en or ko)"
|
|
enum: ["en", "ko"]
|
|
default: "en"
|
|
commandFunction: |-
|
|
(config) => ({
|
|
command: "node",
|
|
args: ["dist/index.js"],
|
|
env: {
|
|
API_URL: config.apiUrl || "https://web-inspector.yakenator.io",
|
|
LANGUAGE: config.language || "en",
|
|
TRANSPORT: "stdio"
|
|
}
|
|
})
|