feishu-markdown-mcp
MCP server for Feishu Markdown
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"feishu-markdown-mcp": {
"args": [
"feishu-markdown-mcp@0.1.3"
],
"command": "npx"
}
}
}
可用工具 (5 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
tavily_search 14 个参数 需填 1 项
Search the web for current information on any topic. Use for news, facts, or data beyond your knowledge cutoff. Returns snippets and source URLs.
必填参数:query
tavily_extract 6 个参数 需填 1 项
Extract content from URLs. Returns raw page content in markdown or text format.
必填参数:urls
tavily_crawl 11 个参数 需填 1 项
Crawl a website starting from a URL. Extracts content from pages with configurable depth and breadth.
必填参数:url
tavily_map 8 个参数 需填 1 项
Map a website's structure. Returns a list of URLs found starting from the base URL.
必填参数:url
tavily_research 2 个参数 需填 1 项
Perform comprehensive research on a given topic or question. Use this tool when you need to gather information from multiple sources to answer a question or complete a task. Returns a detailed response based on the research findings.
必填参数:input
服务介绍
Feishu Markdown
本项目是一个单仓库(monorepo),用于将 Markdown 转换为飞书 / Lark 文档格式,并提供一个 MCP 服务以便与 Model Context Protocol 集成。
主要 package:
feishu-markdown:核心库,将 Markdown 转换为飞书文档结构,支持图片、流程图(Mermaid)等处理。feishu-markdown-mcp:基于feishu-markdown的 MCP 服务,可作为模型上下文协议(Model Context Protocol)的后端插件使用。
# 快速开始
- 安装依赖:
pnpm install
- 构建所有包:
pnpm build
- 在开发中运行某个包(示例):
pnpm - -filter feishu-markdown dev
# 开发
- 运行全部测试:
pnpm test - 代码风格与类型检查:
pnpm lint/pnpm typecheck
# 发布
仓库提供了 GitHub Actions 工作流用于自动发布。发布到 npm 公共仓库需要在仓库 Secrets 中配置 NPM_TOKEN(用于 pnpm publish)。
# 许可证
本项目使用 MIT 许可证,详见项目根目录的 LICENSE 文件。
更多信息请查看各子包的 package.json 与 README.md。