drio
Open app

Skynet-MCP (THIS PROJECT IS A WORK IN PROGRESS)

Source

An MCP Server that acts as an agent and that can spawn more Agents, by using MCP.. MCP Inception!

Catalog onlyCatalog onlySTDIO

Overview

Skynet-MCP is a Multi-Agent Control Protocol (MCP) server that functions as an agent capable of spawning additional agents, creating a network of interconnected agents through MCP.

To use Skynet-MCP, set up the server by following the installation instructions on the GitHub repository, and then configure the agents as needed to perform various tasks.

  • Acts as a central server for managing multiple agents. - Ability to spawn new agents dynamically. - Utilizes the Multi-Agent Control Protocol for communication.
  1. Managing a fleet of autonomous agents for data collection.
  2. Coordinating tasks among multiple agents in a distributed system.
  3. Implementing complex workflows that require agent collaboration.

Add to your AI client

Use these steps to connect Skynet-MCP (THIS PROJECT IS A WORK IN PROGRESS) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "skynet-mcp-ivo-toby": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "skynet-mcp-ivo-toby": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "skynet-mcp-ivo-toby": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "skynet-mcp-ivo-toby": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "skynet-mcp-ivo-toby": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "skynet-mcp-ivo-toby": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-skynet-mcp-ivo-toby"
      ]
    }
  }
}

FAQ

What is MCP?

MCP stands for Multi-Agent Control Protocol, which is used for communication between agents.

Can I customize the agents?

Yes! Agents can be customized based on the specific tasks you want them to perform.

Is Skynet-MCP open source?

Yes! Skynet-MCP is available under the MIT license.