MCP Starter Server

{ "name": "attio-mcp-server", "version": "0.0.2", "description": "A Model Context Protocol server that connects Attio to LLMs", "main": "dist/index.js", "module": "dist/index.js", "type": "module", "access": "public", "bin": { "attio-mcp-server": "dist/index.js" }, "scripts": { "clean": "shx rm -rf dist", "build": "tsc", "postbuild": "shx chmod +x dist/*.js", "check": "tsc --noEmit", "build:watch": "tsc --watch" }, "files": [ "dist" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.4.1", "axios": "^1.7.9", "shx": "^0.3.4", "typescript": "^5.7.2" }, "author": "@hmk", "license": "BSD-3-Clause", "devDependencies": { "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.2.5", "tsx": "^4.19.2" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testPathIgnorePatterns": [ "<rootDir>/dist/" ] } }