@rhofkens/mcp-quotes-server-claude-code
Version:
Model Context Protocol (MCP) server for managing and serving quotes
93 lines (92 loc) • 2.92 kB
JSON
{
"name": "@rhofkens/mcp-quotes-server-claude-code",
"version": "1.1.1",
"description": "Model Context Protocol (MCP) server for managing and serving quotes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"mcp-quotes-server-claude-code": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npx --no-install tsc -p tsconfig.build.json",
"build:clean": "rm -rf dist && npm run build",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest",
"test:ci": "CI=true node --experimental-vm-modules --no-warnings node_modules/.bin/jest --detectOpenHandles --forceExit --maxWorkers=2",
"test:watch": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest --coverage",
"lint": "npx --no-install eslint . --ext .ts,.tsx",
"lint:fix": "npx --no-install eslint . --ext .ts,.tsx --fix",
"format": "npx --no-install prettier --write .",
"format:check": "npx --no-install prettier --check .",
"typecheck": "npx --no-install tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check",
"prepublishOnly": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major"
},
"keywords": [
"mcp",
"model-context-protocol",
"quotes",
"server",
"typescript",
"llm",
"ai",
"claude",
"anthropic",
"serper",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/express": "^5.0.3",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"docs/"
],
"repository": {
"type": "git",
"url": "https://github.com/rhofkens/mcp-quotes-server-claude-code.git"
},
"bugs": {
"url": "https://github.com/rhofkens/mcp-quotes-server-claude-code/issues"
},
"homepage": "https://github.com/rhofkens/mcp-quotes-server-claude-code#readme",
"publishConfig": {
"access": "public"
}
}