officernd-mcp-server
Version:
MCP server for OfficeRnD workspace management - create, search, update and cancel bookings
56 lines (55 loc) • 1.28 kB
JSON
{
"name": "officernd-mcp-server",
"version": "1.2.1",
"description": "MCP server for OfficeRnD workspace management - create, search, update and cancel bookings",
"main": "dist/index.js",
"type": "module",
"bin": {
"officernd-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"officernd",
"bookings",
"workspace",
"meeting-rooms",
"coworking",
"model-context-protocol",
"claude",
"ai"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Trust-Square/officernd-mcp-server.git"
},
"homepage": "https://github.com/Trust-Square/officernd-mcp-server#readme",
"bugs": {
"url": "https://github.com/Trust-Square/officernd-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"node-fetch": "^3.3.2",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
}
}