drio
Open app

feishu-tools-mcp

Source

MCP server provides Feishu related operations to AI encoding agents such as cursor 飞书MCP插件

Catalog onlyCatalog onlySTDIO

Overview

feishu-tools-mcp is a server that provides operations related to Feishu for AI encoding agents, enabling seamless integration and functionality with Feishu applications.

To use feishu-tools-mcp, set up the MCP server and utilize the provided tools to perform operations such as retrieving Feishu documents.

  • Integration with Feishu for AI applications - Operations for document retrieval and management - Support for AI encoding agents
  1. Automating document retrieval from Feishu for AI processing.
  2. Enhancing AI applications with Feishu functionalities.
  3. Streamlining workflows that involve Feishu documents.

Add to your AI client

Use these steps to connect feishu-tools-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "feishu-tools-mcp-li-vien": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "feishu-tools-mcp-li-vien": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "feishu-tools-mcp-li-vien": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "feishu-tools-mcp-li-vien": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "feishu-tools-mcp-li-vien": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "feishu-tools-mcp-li-vien": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-feishu-tools-mcp-li-vien"
      ]
    }
  }
}

FAQ

What operations can feishu-tools-mcp perform?

It can perform various operations related to Feishu, including document retrieval.

Is feishu-tools-mcp free to use?

The usage terms are not specified, please check the repository for details.

What programming language is feishu-tools-mcp written in?

It is written in JavaScript.