UNPKG

@iqai/mcp-atp

Version:

Mcp server for ATP (IQAI's Agent Tokenization Platform) access

61 lines 1.47 kB
{ "name": "@iqai/mcp-atp", "version": "0.0.9", "description": "Mcp server for ATP (IQAI's Agent Tokenization Platform) access", "main": "dist/index.js", "type": "module", "bin": { "mcp-atp": "dist/index.js" }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/IQAIcom/mcp-atp.git" }, "keywords": [ "mcp", "ATP", "iqagents" ], "author": "IQAI", "license": "ISC", "publishConfig": { "access": "public" }, "bugs": { "url": "https://github.com/IQAIcom/mcp-atp/issues" }, "homepage": "https://github.com/IQAIcom/mcp-atp#readme", "dependencies": { "dedent": "^1.6.0", "dotenv": "^16.5.0", "fastmcp": "^3.32.0", "viem": "^2.29.4", "zod": "^3.24.4" }, "devDependencies": { "@biomejs/biome": "*", "@changesets/cli": "^2.29.4", "@types/node": "^22.15.19", "husky": "^9.0.0", "lint-staged": "^15.0.0", "shx": "^0.3.4", "typescript": "^5.8.3", "zod-to-json-schema": "^3.25.1" }, "lint-staged": { "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [ "biome check --write --organize-imports-enabled=false --no-errors-on-unmatched" ] }, "scripts": { "build": "tsc && shx chmod +x dist/index.js", "watch": "tsc --watch", "start": "node dist/index.js", "publish-packages": "pnpm run build && changeset publish", "format": "biome format . --write", "lint": "biome check ." } }