package.json•1.05 kB
{
"name": "markupai-mcp-server",
"version": "1.0.0",
"description": "MCP server for Markup AI API text analysis and improvement",
"main": "dist/index.js",
"type": "module",
"bin": {
"markupai-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"markupai",
"api",
"text-analysis",
"writing-assistant",
"style-guide"
],
"author": "Markup AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markupai/mcp"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"@types/node-fetch": "^2.6.12",
"dotenv": "^17.2.0",
"form-data": "^4.0.3",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}