UNPKG

prompt-mcp-server

Version:

提示词模板和Cursor规则的MCP服务器 - A Model Context Protocol server for managing prompt templates and cursor rules

71 lines 1.79 kB
{ "name": "prompt-mcp-server", "version": "1.0.3", "description": "提示词模板和Cursor规则的MCP服务器 - A Model Context Protocol server for managing prompt templates and cursor rules", "main": "dist/index.js", "bin": { "prompt-mcp-server": "dist/index.js" }, "files": [ "dist/**/*", "database/init.sql", "config.env.example", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/zhaopu/prompt-mcp-server.git" }, "homepage": "https://github.com/zhaopu/prompt-mcp-server#readme", "bugs": { "url": "https://github.com/zhaopu/prompt-mcp-server/issues" }, "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "init-db": "tsx scripts/init-database.ts", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build", "prepack": "npm run build", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "mcp", "model-context-protocol", "prompt", "prompt-template", "cursor-rules", "template", "ai", "llm", "claude", "anthropic", "typescript", "mysql", "database" ], "author": "zhaopu", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "mysql2": "^3.6.5", "dotenv": "^16.5.0" }, "devDependencies": { "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "prettier": "^3.1.0", "tsx": "^4.6.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18.0.0" } }