Morelogin Mcp
ryanao
README
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
# MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
## 功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
## 安装
### PyPI 安装
```bash
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了测试用例
- 改进了响应处理逻辑
- 统一了错误消息格式
v0.1.0 (2024-03-20)
- 初始版本发布
- 支持基本的配置文件管理
- 支持代理管理
- 支持分组管理
MoreLogin MCP API
MoreLogin MCP API 是一个基于 MoreLogin API 的 MCP 协议兼容实现,提供了浏览器环境管理、代理管理和分组管理等功能。
功能特点
- 浏览器环境管理
- 创建、获取、更新和删除浏览器环境
- 批量操作浏览器环境
- 环境模板管理
- 代理管理
- 代理服务器配置
- 代理规则设置
- 代理分组管理
- 分组管理
- 创建和管理分组
- 批量分配环境到分组
- 分组权限控制
安装
PyPI 安装
pip install morelogin-mcp
源码安装
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
pip install -e .
使用方法
作为独立服务运行
- 配置环境变量:
cp .env.example .env
# 编辑 .env 文件,填入您的 API 密钥
- 启动服务:
python -m morelogin_mcp.main
在 Cursor 应用中使用
from morelogin_mcp import MoreLoginClient, MCPHandler
# 创建客户端
client = MoreLoginClient(api_key="your_api_key")
# 创建处理器
handler = MCPHandler(client)
# 处理 MCP 请求
response = handler.handle_request({
"method": "create_profile",
"params": {
"name": "test_profile",
"platform": "windows",
"browser": "chrome"
}
})
API 文档
浏览器环境管理
创建环境
response = client.create_profile(
name="test_profile",
platform="windows",
browser="chrome"
)
获取环境
profile = client.get_profile(profile_id="123")
更新环境
response = client.update_profile(
profile_id="123",
name="new_name",
platform="mac"
)
删除环境
response = client.delete_profile(profile_id="123")
代理管理
添加代理
response = client.add_proxy(
proxy_type="http",
host="127.0.0.1",
port=8080,
username="user",
password="pass"
)
获取代理列表
proxies = client.get_proxies()
更新代理
response = client.update_proxy(
proxy_id="123",
host="new.host.com",
port=9090
)
删除代理
response = client.delete_proxy(proxy_id="123")
分组管理
创建分组
response = client.create_group(
name="test_group",
description="测试分组"
)
获取分组列表
groups = client.get_groups()
更新分组
response = client.update_group(
group_id="123",
name="new_name",
description="新的描述"
)
删除分组
response = client.delete_group(group_id="123")
开发指南
环境设置
- 克隆仓库:
git clone https://github.com/ryanao/morelogin-mcp.git
cd morelogin-mcp
- 创建虚拟环境:
python -m venv venv
source venv/bin/activate # Linux/Mac
# 或
.\venv\Scripts\activate # Windows
- 安装开发依赖:
pip install -r requirements.txt
pip install -r requirements-dev.txt
运行测试
pytest
代码规范
- 遵循 PEP 8 代码风格指南
- 使用类型注解
- 编写清晰的文档字符串
- 为所有公共 API 编写单元测试
贡献指南
请参阅 CONTRIBUTING.md 文件了解如何贡献代码。
许可证
本项目采用 MIT 许可证,详见 LICENSE 文件。
联系方式
- 项目主页:https://github.com/ryanao/morelogin-mcp
- 问题反馈:https://github.com/ryanao/morelogin-mcp/issues
更新日志
v0.1.1 (2024-03-21)
- 修复了错误处理机制
- 优化了
推荐服务器
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
MCP Package Docs Server
促进大型语言模型高效访问和获取 Go、Python 和 NPM 包的结构化文档,通过多语言支持和性能优化来增强软件开发。
Claude Code MCP
一个实现了 Claude Code 作为模型上下文协议(Model Context Protocol, MCP)服务器的方案,它可以通过标准化的 MCP 接口来使用 Claude 的软件工程能力(代码生成、编辑、审查和文件操作)。
@kazuph/mcp-taskmanager
用于任务管理的模型上下文协议服务器。它允许 Claude Desktop(或任何 MCP 客户端)在基于队列的系统中管理和执行任务。
mermaid-mcp-server
一个模型上下文协议 (MCP) 服务器,用于将 Mermaid 图表转换为 PNG 图像。
Jira-Context-MCP
MCP 服务器向 AI 编码助手(如 Cursor)提供 Jira 工单信息。
Linear MCP Server
一个模型上下文协议(Model Context Protocol)服务器,它与 Linear 的问题跟踪系统集成,允许大型语言模型(LLM)通过自然语言交互来创建、更新、搜索和评论 Linear 问题。
Sequential Thinking MCP Server
这个服务器通过将复杂问题分解为顺序步骤来促进结构化的问题解决,支持修订,并通过完整的 MCP 集成来实现多条解决方案路径。
Curri MCP Server
通过管理文本笔记、提供笔记创建工具以及使用结构化提示生成摘要,从而实现与 Curri API 的交互。