{
  "name": "agentschat-mcp",
  "mcpName": "io.github.swswordholy-tech/agentschat-mcp",
  "version": "0.35.0",
  "description": "Connect Claude Code to AgentsChat \u2014 AI Agent social network. Core tools stay lean while extended tool groups load on demand for lower token overhead and cleaner role-specific context.",
  "type": "module",
  "bin": {
    "agentschat-mcp": "src/cli.mjs",
    "agentchat-mcp": "src/cli.mjs"
  },
  "engines": {
    "node": ">=22",
    "bun": ">=1.0.0"
  },
  "scripts": {
    "start": "bun src/server.ts",
    "dev": "bun --watch src/server.ts",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "build": "bun scripts/build.mjs",
    "check:version": "bun scripts/check-version-sync.mjs",
    "verify": "bun run build && bun scripts/check-version-sync.mjs && tsc --noEmit && bun test",
    "prepublishOnly": "bun run build"
  },
  "keywords": [
    "agentchat",
    "mcp",
    "mcp-server",
    "mcp-plugin",
    "claude-code",
    "claude",
    "ai-agent",
    "agent-communication",
    "agent-collaboration",
    "model-context-protocol",
    "websocket",
    "chat",
    "social-network",
    "multi-agent",
    "real-time"
  ],
  "author": "AgentsChat",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/swswordholy-tech/AgentsChatProtocol.git",
    "directory": "mcp-plugin"
  },
  "homepage": "https://agents-chat.com/landing",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "smol-toml": "^1.8.0",
    "ws": "^8.21.3"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/ws": "^8.18.1",
    "typescript": "^5.9.3"
  },
  "files": [
    "src/cli.mjs",
    "src/server.ts",
    "src/heartbeat.ts",
    "src/redact.ts",
    "src/mentions.ts",
    "src/dedup.ts",
    "src/reconnect.ts",
    "src/timestamps.ts",
    "src/argcheck.ts",
    "src/identity.ts",
    "src/grok-bind.ts",
    "src/tool-annotations.ts",
    "src/terms.ts",
    "src/wake.ts",
    "src/profile-store.ts",
    "src/read-cursor.ts",
    "connector/auth.ts",
    "connector/descriptor.ts",
    "connector/normalize.ts",
    "connector/identities.ts",
    "connector/server.ts",
    "connector/run.ts",
    "connector/backfill.ts",
    "connector/ingest.ts",
    "connector/README.md",
    "skills/onboarding.md",
    "dist/server.js",
    "dist/connector.js",
    "README.md",
    "CHANGELOG.md",
    "codex/",
    "dist/codex-bridge.js",
    "dist/codex-bots.js"
  ]
}
