@mokei/mcp-fetch
Version:
Fetch MCP server
55 lines • 1.53 kB
JSON
{
"name": "@mokei/mcp-fetch",
"version": "0.4.0",
"license": "MIT",
"homepage": "https://mokei.dev",
"description": "Fetch MCP server",
"keywords": [
"model",
"context",
"protocol",
"mcp",
"server",
"llm",
"ai",
"fetch"
],
"repository": {
"type": "git",
"url": "https://github.com/TairuFramework/mokei",
"directory": "mcp-servers/fetch"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./config": "./lib/config.js"
},
"files": [
"lib/*"
],
"sideEffects": false,
"dependencies": {
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"@mokei/context-server": "^0.4.0"
},
"devDependencies": {
"@enkaku/node-streams-transport": "^0.12.1",
"@enkaku/transport": "^0.12.0",
"@types/turndown": "^5.0.5",
"@mokei/context-protocol": "^0.4.0",
"@mokei/context-client": "^0.4.0"
},
"scripts": {
"build:clean": "del lib",
"build:js": "swc src -d ./lib --config-file ../../swc.json --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build:types:ci": "tsc --emitDeclarationOnly --skipLibCheck --declarationMap false",
"build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types",
"test:types": "tsc --noEmit --skipLibCheck",
"test:unit": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test": "pnpm run test:types && pnpm run test:unit"
}
}