okx-mcp-server
Version:
Model Context Protocol (MCP) server for gasless DEX swapping powered by OKX DEX API + Biconomy MEE
87 lines (86 loc) • 2.38 kB
JSON
{
"name": "okx-mcp-server",
"module": "src/index.ts",
"type": "module",
"version": "1.0.3",
"description": "Model Context Protocol (MCP) server for gasless DEX swapping powered by OKX DEX API + Biconomy MEE",
"bin": {
"okx-mcp": "./bin/cli.js"
},
"main": "build/index.js",
"files": [
"build/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir build --target node",
"build:http": "bun build src/server/http-server.ts --outdir build --target node --outfile http-server.js",
"dev": "bun --watch src/index.ts",
"start:http": "bun run src/server/http-server.ts",
"dev:http": "bun --watch src/server/http-server.ts",
"prepublishOnly": "bun run build && bun run build:http",
"test": "bun test",
"test:swap": "bun run test-swap.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release": "npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:latest": "conventional-changelog -p angular -r 1 > RELEASE_NOTES.md"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"conventional-changelog-cli": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@biconomy/abstractjs": "^1.0.21",
"@gelatonetwork/automate-sdk": "^3.1.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"@tanstack/react-query": "^5.83.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"ethers": "^6.15.0",
"express": "^4.21.2",
"https": "^1.0.0",
"querystring": "^0.2.1",
"viem": "^2.33.0",
"wagmi": "^2.16.0",
"zod": "^3.24.2"
},
"keywords": [
"mcp",
"model-context-protocol",
"evm",
"blockchain",
"base",
"optimism",
"okx",
"dex",
"web3",
"smart-contracts",
"ai",
"agent"
],
"author": "Etheral <etheral.eth.dev@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nith567/okx-dex-swap-mcp"
},
"homepage": "https://github.com/Nith567/okx-dex-swap-mcp#readme",
"publishConfig": {
"access": "public"
}
}