{
	"name": "@sei-js/mcp-server",
	"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
	"type": "module",
	"version": "1.0.0",
	"bin": "./bin/mcp-server.js",
	"main": "./dist/index.js",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"files": [
		"dist",
		"bin"
	],
	"scripts": {
		"build": "rm -rf dist && tsc --project ./tsconfig.json",
		"start": "node dist/index.js",
		"start:http": "SERVER_TRANSPORT=streamable-http node dist/index.js",
		"start:http-sse": "SERVER_TRANSPORT=http-sse node dist/index.js",
		"inspect": "npx -y @modelcontextprotocol/inspector",
		"dev": "bun --watch src/index.ts",
		"test": "bun test --isolate src"
	},
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js",
			"default": "./dist/index.js"
		}
	},
	"devDependencies": {
		"@types/cors": "^2.8.17",
		"@types/express": "^5.0.0",
		"typescript": "^5.8.3"
	},
	"dependencies": {
		"@modelcontextprotocol/sdk": "^1.23.0",
		"@noble/hashes": "^1.8.0",
		"commander": "^14.0.0",
		"cors": "^2.8.5",
		"dotenv": "^16.5.0",
		"express": "^4.21.2",
		"viem": "2.55.16",
		"zod": "^4.0.5"
	},
	"keywords": [
		"mcp",
		"model-context-protocol",
		"evm",
		"blockchain",
		"sei",
		"web3",
		"smart-contracts",
		"ai",
		"agent"
	],
	"author": "@codebycarson",
	"license": "MIT",
	"engines": {
		"node": ">=20.0.0"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/sei-protocol/sei-js.git",
		"directory": "packages/mcp-server"
	},
	"bugs": {
		"url": "https://github.com/sei-protocol/sei-js/issues"
	},
	"homepage": "https://github.com/sei-protocol/sei-js/tree/main/packages/mcp-server#readme",
	"publishConfig": {
		"access": "public"
	}
}
