package.json•1.93 kB
{
"name": "surrealdb-mcp-server",
"version": "0.2.0",
"description": "A Model Context Protocol (MCP) server that provides a standardized interface for AI assistants to interact with a SurrealDB database.",
"type": "module",
"main": "build/index.js",
"bin": {
"surrealdb-mcp-server": "build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE",
"llms-install.md"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "ts-node --esm src/index.ts",
"start": "node build/index.js",
"test": "echo \"No tests specified yet\" && exit 0",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsxdavid/surrealdb-mcp-server.git"
},
"keywords": [
"surrealdb",
"mcp",
"model-context-protocol",
"ai",
"assistant",
"api",
"server",
"database"
],
"author": "David Whatley",
"license": "MIT",
"bugs": {
"url": "https://github.com/nsxdavid/surrealdb-mcp-server/issues"
},
"homepage": "https://github.com/nsxdavid/surrealdb-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"surrealdb": "^1.3.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.29.1"
}
}