I

IRC

Send messages to IRC channels.

·No reviews yet
Repo
Share:

About

Auto-generated

IRC is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about IRC.

What is the IRC MCP used for?
The IRC MCP facilitates sending messages to IRC channels. It allows seamless integration with IRC networks for interactive communication and command execution within various client applications.
Does the IRC MCP require an API key or other credentials?
No, the IRC MCP does not require an API key, OAuth, or any other credentials for its operation. Authentication to IRC networks is typically handled by the IRC client itself.
How can I configure the IRC MCP in a client application?
Configuration in a client like Cline would involve adding the 'irc' slug as a new transport. No special parameters are needed beyond the standard client setup for connecting to an MCP via stdio transport.
What specific tools or capabilities does the IRC MCP expose?
The IRC MCP primarily exposes capabilities for sending messages to IRC channels. Specific tools would depend on the implementation within the client, but core functionality revolves around text-based communication.
Is there a cost associated with using the IRC MCP?
The IRC MCP itself is open source and available on GitHub, implying no direct cost for its use. However, costs might be incurred from the underlying IRC network or any client applications used.

Install IRC

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "irc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-irc"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "irc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-irc"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.