UNPKG

@mokei/mcp-fetch

Version:
62 lines 1.65 kB
{ "name": "@mokei/mcp-fetch", "version": "0.11.0", "description": "Fetch MCP server", "keywords": [ "model", "context", "protocol", "mcp", "server", "llm", "ai", "fetch" ], "homepage": "https://mokei.dev", "repository": { "type": "git", "url": "https://github.com/TairuFramework/mokei", "directory": "mcp-servers/fetch" }, "license": "MIT", "sideEffects": false, "type": "module", "exports": { ".": "./lib/index.js", "./config": { "types": "./lib/config.d.ts", "default": "./lib/config.js" } }, "main": "lib/index.js", "types": "lib/index.d.ts", "bin": { "mcp-fetch": "./lib/serve.js" }, "files": [ "lib/*" ], "dependencies": { "turndown": "^7.2.4", "turndown-plugin-gfm": "^1.0.2", "@mokei/context-server": "^0.11.0" }, "devDependencies": { "@enkaku/node-streams": "^0.20.0", "@enkaku/transport": "^0.20.0", "@types/node": "^26.1.2", "@types/turndown": "^5.0.6", "@mokei/context-client": "^0.11.0", "@mokei/context-protocol": "^0.11.0" }, "scripts": { "build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types", "build:clean": "del lib", "build:js": "swc src -d ./lib --config-file ../../node_modules/@kigu/dev/swc.json --strip-leading-paths", "build:types": "tsc --emitDeclarationOnly --skipLibCheck", "build:types:ci": "tsc --emitDeclarationOnly --skipLibCheck --declarationMap false", "test": "pnpm run test:types && pnpm run test:unit", "test:types": "tsc --noEmit --skipLibCheck -p tsconfig.test.json", "test:unit": "vitest run" } }