Cline MCP Server
@mows21
关于 Cline MCP Server
Cline MCP Server - Internal workflow orchestration for agentic tasks
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"cline-mcp-server": {
"command": "docker",
"args": [
"build",
"-t",
"cline-mcp",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Cline MCP Server?
Cline MCP Server is an internal workflow orchestration server for agentic task execution. It integrates with the Model Context Protocol via a unified /mcp endpoint for JSON-RPC communication. It is designed for developers building automated agent workflows.
How to use Cline MCP Server?
Install dependencies with npm install, build with npm run build, and start with npm start. Alternatively, build and run with Docker using docker build -t cline-mcp . then docker run -p 8080:8080 cline-mcp. Configure via a JSON object with database, port, and auth_token keys.
Key features of Cline MCP Server
- Agent execution (e.g., summarize, extract, rewrite)
- Workflow management with external triggers (e.g., n8n)
- Key–value memory operations (CRUD)
- System command execution (e.g., Python scripts)
- MCP‑compatible tools, resources, and prompts
- SQLite database for persistent storage
Use cases of Cline MCP Server
- Automatically summarize daily call notes using GPT‑4
- Run recurring workflows triggered by external systems
- Store and retrieve process logs or agent context
- Execute system scripts as part of a task pipeline
FAQ from Cline MCP Server
What dependencies are required to run Cline MCP Server?
Node.js and npm are required. Docker is optional for containerized deployment.
How do I configure Cline MCP Server?
Create a JSON configuration with database (SQLite path), port (default 8080), and auth_token (secret token).
What transport does Cline MCP Server use?
It listens on HTTP port 8080 and uses a unified /mcp endpoint for JSON‑RPC communication.
Is authentication supported?
Yes, an auth_token can be set in the configuration to secure API endpoints.
What database does Cline MCP Server use?
It uses SQLite, configured via the database field (e.g., sqlite:///data/cline.db).
推理 分类下的更多 MCP 服务器
MCP Sandbox
danstarnsTurn any JavaScript module into a sandboxed MCP (Model Context Protocol) server with automatic reflection and type inference.
MCP Sandbox
JohanLi233Python sandboxes for llms
NeoCoder: Neo4j-Guided AI Coding Workflow
angrysky56An MCP server allowing AI assistants to use a Neo4j knowledge graph as their primary, dynamic instruction manual and long term project memory with adaptive templating and autonomous tool development tools.
Node Code Sandbox MCP 🛠️
mozicim# 🐢🚀 Node.js Sandbox MCP ServerThis repository hosts a Node.js server that implements the Model Context Protocol (MCP) for running JavaScript in isolated Docker containers. It allows for on-the-fly npm dependency installation, making it easy to execute code safely and efficient
Task Planner MCP Server
CaptainCrouton89An MCP (Model Context Protocol) server that helps AI assistants (like Claude) break down complex tasks into manageable steps, track progress, and manage a hierarchical task list.
评论