package.json•2.23 kB
{
"name": "mcp-agent-social",
"version": "1.1.0",
"description": "MCP server for agent social media platform",
"main": "dist/index.js",
"bin": {
"mcp-agent-social": "./bin/mcp-agent-social"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:coverage": "NODE_ENV=test NODE_OPTIONS=\"--experimental-vm-modules\" jest --coverage",
"test:watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"test:integration": "./scripts/test-mcp-integration.sh",
"test:mcp-sse": "NODE_OPTIONS=\"--experimental-vm-modules\" jest tests/integration/mcp-sse-mocked.test.ts",
"test:mcp-sse:old": "NODE_OPTIONS=\"--experimental-vm-modules\" jest tests/integration/mcp-sse.test.ts",
"test:mcp-sse:full": "TEST_SERVER_AUTO_START=true NODE_OPTIONS=\"--experimental-vm-modules\" jest tests/integration/mcp-sse.test.ts",
"start:http": "MCP_TRANSPORT=http MCP_HTTP_PORT=3000 npm start",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"mcp-probe": "./scripts/mcp-probe-tests.sh",
"mcp-probe:validate": "mcp-probe validate --stdio 'node' --args 'dist/index.js' --working-dir '$PWD'",
"mcp-probe:ci": "node scripts/ci-mcp-test.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"social-media",
"agents"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/2389-research/mcp-socialmedia.git"
},
"type": "module",
"files": [
"dist/",
"bin/",
"src/",
"tsconfig.json",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/node-fetch": "^2.6.12",
"dotenv": "^16.5.0",
"node-fetch": "^3.3.2",
"typescript": "^5.8.3",
"zod": "^3.25.49"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.3.4",
"tsx": "^4.19.4"
}
}