Back to MCP directory
publicPublicdnsLocal runtime

ctf-mcp-server

CTF解题与出题的AI辅助工具

article

README

🚀 CTF-MCP-Server 中文说明

本项目是使用AI进行CTF解题的一次尝试,旨在利用人工智能技术助力CTF竞赛中的题目解答与生成。

✨ 主要特性

两种服务器类型

  • ctftools_Puzzle_server:主要用于解决CTF题目。
  • ctftools_feces_making_machine_server:主要用于生成CTF题目。

📦 安装指南

暂未提供安装步骤相关内容,若有后续补充可进一步完善。

💻 使用示例

基础用法

使用Cline或相关二次开发插件,加载mcp配置文件。

{
  "mcpServers": {
    "ctftools_Puzzle_server": {
      "command": "python",
      "args": [
        "D:\\AI\\ctf-mcp-server\\ctftools_Puzzle_server.py"
      ],
      "timeout": 1800
    },
    "ctftools_feces_making_machine_server": {
      "command": "python",
      "args": [
        "D:\\AI\\ctf-mcp-server\\ctftools_feces_making_machine_server.py"
      ],
      "timeout": 1800
    }
  }
}
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