Twitter MCP Server

{ "name": "@agentico/mcp-server", "version": "0.2.0", "description": "A Model Context Protocol Server facade to simplify the implementation of agents", "type": "module", "author": { "name": "La Rebelion Labs", "url": "https://rebelion.la" }, "contributors": [ { "name": "Adrian Escutia", "url": "https://escutia.me/adrian" } ], "homepage": "https://agentico.dev", "repository": { "type": "git", "url": "https://github.com/agentico-dev/mcp-server" }, "keywords": [ "mcp", "modelcontextprotocol", "server", "agentic", "facade", "ai" ], "engines": { "node": ">=18" }, "license": "MIT", "bin": { "server": "./build/index.js" }, "main": "./build/index.js", "exports": { ".": { "import": "./build/index.js", "types": "./build/index.d.ts" } }, "typesVersions": { "*": { "*": [ "./build/*" ] } }, "scripts": { "build": "tsc", "postbuild": "node -e \"require('fs').chmodSync('build/index.js', '755')\"", "start": "node --disable-warning=ExperimentalWarning build/index.js", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", "publish:npm": "npm run build && npm publish --access public" }, "files": [ "build", "README.md", "package.json", "mcp-server.png", "LICENSE" ], "devDependencies": { "@types/node": "^22.10.5", "typescript": "^5.7.2" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.1.0", "zod": "^3.24.1", "zod-to-json-schema": "^3.24.1" }, "resolutions": { "strip-ansi": "6.0.1" } }