Back to MCP directory
publicPublicdnsLocal runtime

mcp-datalust-seq-mcp-dotnet

一个封装Datalust Seq服务器API的MCP(模型上下文协议)dotnet项目,提供构建、测试及Docker部署功能。

article

README

🚀 mcp-datalust-seq-mcp-dotnet

本项目将 Datalust Seq 服务器 API 封装为 MCP 实现,方便在相关场景中使用。

🚀 快速开始

在 dotnet 中使用封装 Datalust Seq API 的 MCP

  1. 克隆仓库
    git clone https://github.com/cege7480/mcp-datalust-seq-mcp-dotnet.git
    cd mcp-datalust-seq-mcp-dotnet
    
  2. 构建项目
    dotnet build
    
  3. 运行 MCP 服务器
    dotnet run --project src/McpDatalustSeq.csproj
    

运行单元测试

  1. 构建测试项目
    dotnet build tests/McpDatalustSeq.Tests.csproj
    
  2. 运行测试
    dotnet test tests/McpDatalustSeq.Tests.csproj
    

构建并发布 Docker 容器到 ghcr.io

  1. 构建 Docker 镜像
    docker build -t ghcr.io/<your-username>/mcp-datalust-seq-mcp-dotnet:latest .
    
  2. 推送 Docker 镜像到 ghcr.io
    docker push ghcr.io/<your-username>/mcp-datalust-seq-mcp-dotnet:latest
    

📚 详细文档

参考资料

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client