LimeAI MCP Server (Python)

by liuwenlonghub

156 downloads
Not rated
GitHub

Description

# LimeAI MCP Server (Python) ### 环境要求 - Python 3.10 或更高版本。 ## 1. 设置环境 首先,我们来安装`uv`: MacOS/Linux ```bash MacOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh ``` Windows ```powershell Windows powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 |…

About

# LimeAI MCP Server (Python) ### 环境要求 - Python 3.10 或更高版本。 ## 1. 设置环境 首先,我们来安装`uv`: MacOS/Linux ```bash MacOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh ``` Windows ```powershell Windows powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" ``` ## 2. 获取 LimeAI MCP Server ```bash…

Details

Author
liuwenlonghub
Downloads
156
Categories
Other

- Integrates with the LimeAI platform via MCP protocol.
- Requires Python 3.10 or later.
- Uses uv for fast and reliable package management.
- Authenticates using a LimeAI access token.
- Easily configurable in Cursor and other MCP clients.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name LimeAI MCP Server (Python)
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install uv, clone the official repository, create and activate a virtual environment, then install dependencies with uv add "mcp[cli]" httpx. Obtain a LimeAI access token from your LimeAI account profile. Configure the server in Cursor (or similar MCP clients) by adding a JSON entry with the command uv --directory {YOUR_PATH}/limeai-mcp-server/ run main.py and setting the LIMEAI_ACCESS_TOKEN environment variable.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "limeai mcp server (python)": {
            "limeai-mcp-server": {
                "command": "uv",
                "args": [
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "limeai-mcp-server": {
        "command": "uv",
        "args": [
            "venv"
        ]
    }
}

LimeAI MCP Server (Python)

环境要求

- Python 3.10 或更高版本。

1. 设置环境

首先,我们来安装uv

MacOS/Linux
``bash MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

 Windows
powershell Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

2. 获取 LimeAI MCP Server

bash
# LimeAI Mcp Server 官方开源仓库下载
git@github.com:liuwenlonghub/limeai-mcp-server.git
cd limeai-mcp-server

# 创建虚拟环境并激活
uv venv
source .venv/bin/activate

# 安装依赖
uv add "mcp[cli]" httpx


获取 LIMEAI_ACCESS_TOKEN

- 登录 LimeAI(www.limeai.net) > 个人资料 > 访问令牌

3. 在Cursor中使用

Cursor -> Preferences -> Cursor Settings -> MCP -> Add new global MCP

添加以下配置内容(其它MCP客户端类似):

json
{
"mcpServers": {
"limeai-mcp-server": {
"command": "uv",
"args": [
"--directory",
"{YOUR_PATH}/limeai-mcp-server/",
"run",
"main.py"
],
"env": {
"LIMEAI_ACCESS_TOKEN": "<USER_LIMEAI_ACCESS_TOKEN>"
}
}
}
}

``

回到配置,此时 LimeAI MCP Server已经启用

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.