package.json•1.33 kB
{
"name": "@paperinvest/mcp-server",
"version": "1.0.4",
"description": "Official MCP server for Paper's trading platform - enables AI assistants to interact with Paper's API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"paper-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paperinvest/mcp-server.git"
},
"bugs": {
"url": "https://github.com/paperinvest/mcp-server/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"trading",
"paper",
"paper-invest",
"claude",
"ai",
"trading-api"
],
"author": "Paper Invest, Inc.",
"license": "MIT",
"homepage": "https://github.com/paperinvest/mcp-server#readme",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
}
}