url-builder-mcp
Version:
URL Builder MCP Server - Professional URL construction with intelligent parameter handling for Claude Desktop
93 lines (92 loc) • 2.67 kB
JSON
{
"name": "url-builder-mcp",
"version": "1.1.1",
"description": "URL Builder MCP Server - Professional URL construction with intelligent parameter handling for Claude Desktop",
"type": "module",
"main": "bin/url-builder-mcp.js",
"bin": {
"url-builder-mcp": "./bin/url-builder-mcp.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js --transport http --port 8000",
"start:stdio": "node dist/index.js",
"start:http": "node dist/server.js --transport http --port 8000",
"dev": "ts-node src/index.ts",
"dev:http": "ts-node src/server.ts --transport http --port 8000",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts --max-warnings 0",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"type-check": "tsc --noEmit",
"quality:check": "npm run type-check && npm run lint && npm run format:check && npm run test",
"quality:fix": "npm run type-check && npm run lint:fix && npm run format && npm run test",
"pre-publish": "node scripts/pre-publish-check.cjs",
"prepare": "husky",
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/preuninstall.js"
},
"keywords": [
"mcp",
"url-builder",
"claude",
"fastmcp",
"reservations",
"cloudbeds",
"ai",
"assistant",
"hospitality"
],
"author": "DAOTOMATA FZE <contact@daotomata.com>",
"license": "PROPRIETARY",
"repository": {
"type": "git",
"url": "https://github.com/enpetrache/url_builder_mcp.git"
},
"homepage": "https://github.com/enpetrache/url_builder_mcp#readme",
"bugs": {
"url": "https://github.com/enpetrache/url_builder_mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"files": [
"bin/",
"scripts/",
"dist/",
"src/",
"README.md",
"LICENSE"
],
"preferGlobal": true,
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"express": "^4.18.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}