@honeyfield/rent2b-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@honeyfield/rent2b-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for rent2b rental management API",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "rent2b-mcp": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "generated/tools.json",
13
+ "README.md"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "scripts": {
19
+ "build": "tsc && cp src/overrides/tool-overrides.json dist/overrides/",
20
+ "dev": "tsx src/index.ts",
21
+ "start": "node dist/index.js",
22
+ "generate": "tsx scripts/generate-tools.ts",
23
+ "lint": "eslint src/",
24
+ "typecheck": "tsc --noEmit",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/Honeyfield-Org/rent2b-mcp.git"
30
+ },
31
+ "homepage": "https://github.com/Honeyfield-Org/rent2b-mcp#readme",
32
+ "keywords": [
33
+ "mcp",
34
+ "rent2b",
35
+ "rental",
36
+ "model-context-protocol"
37
+ ],
38
+ "license": "MIT",
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "dependencies": {
43
+ "@modelcontextprotocol/sdk": "^1.27.1",
44
+ "axios": "^1.13.6",
45
+ "express": "^5.2.1",
46
+ "zod": "^4.3.6"
47
+ },
48
+ "devDependencies": {
49
+ "@types/express": "^5.0.6",
50
+ "@types/node": "^25.3.3",
51
+ "tsx": "^4.21.0",
52
+ "typescript": "^5.9.3"
53
+ }
54
+ }