@adeze/raindrop-mcp
Version:
MCP Server for Raindrop.io bookmark management
132 lines (131 loc) • 4.51 kB
JSON
{
"name": "@adeze/raindrop-mcp",
"version": "2.4.5",
"description": "MCP Server for Raindrop.io bookmark management",
"main": "build/index.js",
"module": "build/index.js",
"type": "module",
"bin": {
"raindrop-mcp": "build/index.js"
},
"files": [
"build"
],
"private": false,
"scripts": {
"dev": "bun run build && bun --watch src/index.ts",
"dev:http": "bun run build && bun --watch src/server.ts",
"inspector": "npx @modelcontextprotocol/inspector node --env-file=.env build/index.js",
"inspector:http-server": "npx @modelcontextprotocol/inspector node --env-file=.env build/server.js",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run tests/mcpjam.integration.test.ts",
"auth:check": "node scripts/auth-check.mjs",
"run": "bun run build/index.js",
"build": "bun build --target=node --format=esm --bundle --sourcemap --outdir=build ./src/index.ts ./src/server.ts",
"start:prod": "bun run build/index.js",
"start:http": "bun run src/server.ts",
"clean": "rm -rf build",
"bun:update": "bun update",
"update:deps": "npx npm-check-updates -u && bun install",
"update:deps:interactive": "npx npm-check-updates -i && bun install",
"mcpb:pack": "jq \".version = \\\"$(jq -r .version package.json)\\\"\" manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json && bun run build && npx @anthropic-ai/mcpb@latest pack . raindrop-mcp.mcpb && npx @anthropic-ai/mcpb@latest clean raindrop-mcp.mcpb",
"generate:schema": "npx openapi-typescript ./raindrop-complete.yaml -o ./src/types/raindrop.schema.d.ts --tsconfig ./tsconfig.json --export-type --useUnionTypes --immutable",
"generate:client": "npx @openapitools/openapi-generator-cli generate -i ./raindrop-complete.yaml -g typescript-axios -o src/services/raindrop-client",
"release": "semantic-release",
"docs": "typedoc",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adeze/raindrop-mcp.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"mcp",
"raindrop.io",
"modelcontextprotocol",
"mcp-server",
"raindrop",
"bookmarks",
"ai-assistant",
"llm-tools",
"typescript"
],
"author": "Adam E",
"license": "MIT",
"bugs": {
"url": "https://github.com/adeze/raindrop-mcp/issues"
},
"homepage": "https://github.com/adeze/raindrop-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.13.6",
"dotenv": "^17.3.1",
"esm": "^3.2.25",
"express": "^5.2.1",
"keyv": "^5.6.0",
"openai": "^6.27.0",
"openapi-fetch": "^0.17.0",
"rate-limiter-flexible": "^9.1.1",
"simple-oauth2": "^5.1.0",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@anthropic-ai/dxt": "^0.2.6",
"@eslint/js": "^10.0.1",
"@mcpjam/sdk": "^0.8.8",
"@modelcontextprotocol/inspector": "^0.21.1",
"@openapitools/openapi-generator-cli": "^2.30.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.3.10",
"@types/express": "^5.0.6",
"@types/node": "^25.4.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"supertest": "^7.2.2",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18",
"vitest-mock-extended": "^3.1.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}