{
  "name": "@solana-agent-kit/adapter-mcp",
  "version": "2.0.6",
  "type": "module",
  "description": "Create MCP servers with the Solana Agent Kit",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sendaifun/solana-agent-kit.git"
  },
  "homepage": "https://github.com/sendaifun/solana-agent-kit/tree/v2/packages/adapter-mcp",
  "engines": {
    "node": ">=22.0.0",
    "pnpm": ">=8.0.0"
  },
  "keywords": [
    "solana",
    "mcp",
    "model context protocol",
    "solana agent kit",
    "sendai"
  ],
  "author": "sendaifun",
  "license": "Apache-2.0",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.7.0",
    "zod": "^3.24.1",
    "solana-agent-kit": "2.0.7"
  },
  "peerDependencies": {
    "solana-agent-kit": "2.0.7"
  },
  "scripts": {
    "clean": "rm -rf dist .turbo node_modules",
    "build": "tsup src/index.ts --dts --clean --format cjs,esm --out-dir dist",
    "test": "jest"
  }
}