MCP Feishu Project Manager

by Roland0511
Verified
#!/bin/bash # check if .env file exists if [ ! -f .env ]; then echo "Please create a .env file with the following content:" echo "FS_PROJ_BASE_URL=https://open.feishu.cn" echo "FS_PROJ_PROJECT_KEY=YOUR_PROJECT_KEY" echo "FS_PROJ_USER_KEY=YOUR_USER_KEY" echo "FS_PROJ_PLUGIN_ID=YOUR_PLUGIN_ID" echo "FS_PROJ_PLUGIN_SECRET=YOUR_PLUGIN_SECRET" exit 1 fi # start sse server echo "Starting SSE server..." uvx ./ --transport sse