Feishu MCP Server

by cso1z
Verified
{ "name": "feishu-mcp", "version": "0.0.5", "description": "Model Context Protocol server for Feishu integration", "type": "module", "main": "dist/index.js", "bin": { "feishu-mcp": "./dist/cli.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc && tsc-alias", "type-check": "tsc --noEmit", "start": "node dist/index.js", "start:cli": "cross-env NODE_ENV=cli node dist/index.js", "start:http": "node dist/index.js", "dev": "cross-env NODE_ENV=development tsx watch src/index.ts", "dev:cli": "cross-env NODE_ENV=development tsx watch src/index.ts --stdio", "lint": "eslint . --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "inspect": "pnpx @modelcontextprotocol/inspector", "prepare": "pnpm run build", "pub:release": "pnpm build && npm publish" }, "engines": { "node": "^20.17.0" }, "repository": { "type": "git", "url": "https://github.com/cso1z/Feishu-MCP.git" }, "keywords": [ "feishu", "lark", "mcp", "typescript" ], "author": "cso1z", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "@types/yargs": "^17.0.33", "axios": "^1.7.9", "cross-env": "^7.0.3", "dotenv": "^16.4.7", "express": "^4.21.2", "remeda": "^2.20.1", "yargs": "^17.7.2", "zod": "^3.24.2" }, "devDependencies": { "@types/express": "^5.0.0", "@types/jest": "^29.5.11", "@types/node": "^20.17.0", "@typescript-eslint/eslint-plugin": "^8.24.0", "@typescript-eslint/parser": "^8.24.0", "eslint": "^9.20.1", "eslint-config-prettier": "^10.0.1", "jest": "^29.7.0", "prettier": "^3.5.0", "ts-jest": "^29.2.5", "tsc-alias": "^1.8.10", "tsx": "^4.19.2", "typescript": "^5.7.3" }, "pnpm": { "overrides": { "feishu-mcp": "link:" } } }