Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Amadeus MCP Server
by
privilegemendes
Verified
npm
GitHub
Travel & Transportation
Search
TypeScript
294
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
amadeus-mcp-server-standalone
api-spectifications
scripts
src
__tests__
biome.json
.gitignore
jest.config.js
package.json
package-lock.json
Procfile
railway.toml
README.md
test-sse.js
tsconfig.json
{ "name": "@privilegemendes/amadeus-mcp-server", "version": "1.0.4", "description": "MCP server for Amadeus flight search and booking", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "amadeus-mcp-server": "./dist/cli.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "clean": "rimraf dist", "build": "npm run clean && tsc && chmod +x dist/cli.js", "start": "node dist/cli.js", "dev": "ts-node src/index.ts", "lint": "biome check src/", "format": "biome format --write src/", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest __tests__/integration", "test:inspector": "node __tests__/mcp-inspector.test.js", "mcp:inspect": "npx @modelcontextprotocol/inspector node dist/cli.js", "mcp:test": "node scripts/test-tools.js", "kill-ports": "node scripts/kill-ports.js", "prepublishOnly": "npm run build", "publish": "npm publish" }, "keywords": [ "mcp", "amadeus", "flight-search", "model-context-protocol", "ai" ], "author": "Privilege Mendes", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "amadeus": "^7.1.0", "dotenv": "^16.0.3", "express": "^4.18.2", "node-cache": "^5.1.2", "zod": "^3.20.6" }, "devDependencies": { "@biomejs/biome": "1.7.2", "@types/express": "^4.17.21", "@types/jest": "^29.5.11", "@types/node": "^18.14.0", "eventsource": "^3.0.5", "jest": "^29.7.0", "node-fetch": "^3.3.2", "rimraf": "^6.0.1", "ts-jest": "^29.1.2", "ts-node": "^10.9.1", "typescript": "^4.9.5" }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "https://github.com/privilegemendes/amadeus-mcp-server-standalone.git" }, "bugs": { "url": "https://github.com/privilegemendes/amadeus-mcp-server-standalone/issues" }, "homepage": "https://github.com/privilegemendes/amadeus-mcp-server-standalone#readme", "publishConfig": { "access": "public" } }