Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Cln Mcp

    MCP server for Lightning Network

    2 stars
    Rust
    Updated Sep 6, 2025

    Table of Contents

    • Installation
    • Option 1: From Release (Recommended)
    • Option 2: From Source
    • Prerequisites
    • Protocol Buffers Compiler (protoc)
    • Configuration
    • TLS Certificate Setup
    • Claude Setup

    Table of Contents

    • Installation
    • Option 1: From Release (Recommended)
    • Option 2: From Source
    • Prerequisites
    • Protocol Buffers Compiler (protoc)
    • Configuration
    • TLS Certificate Setup
    • Claude Setup

    Documentation

    Core Lightning MCP Server

    A Rust-based gRPC server that provides a standardized interface to Core Lightning nodes. This server implements the MCP (Model Context Protocol) specification to enable control of the Core Lightning node using LLM.

    MCP

    Installation

    Option 1: From Release (Recommended)

    1. Download the appropriate binary for your platform from the latest release

    2. Extract the archive:

    bash
    # For Linux/macOS
       tar -xzf cln-mcp-.tar.gz
       
       # For Windows
       # Use your preferred zip extractor

    3. Make the binary executable (Linux/macOS only):

    bash
    chmod +x cln-mcp

    Option 2: From Source

    Prerequisites

    • Rust 1.80 or higher
    • Protocol Buffers Compiler (protoc)
    • Core Lightning (with gRPC enabled)
    • MCP clients (Claude, Goose, etc.)

    Protocol Buffers Compiler (protoc)

    Ubuntu/Debian:

    bash
    sudo apt-get update
    sudo apt-get install -y protobuf-compiler

    macOS:

    bash
    brew install protobuf

    Windows:

    bash
    choco install protoc

    Verify installation:

    bash
    protoc --version  # Should show version 3.0.0 or higher

    1. Clone the repository:

    bash
    git clone https://github.com/adi2011/cln-mcp.git
    cd cln-mcp

    2. Build the project:

    bash
    cargo build --release

    Configuration

    The server can be configured using command-line arguments:

    bash
    cln-mcp [OPTIONS]
    
    Options:
      --certs-dir     Path to certificates directory
      --node-address   Node address (default: https://localhost:9736)
      --help                Shows help message

    TLS Certificate Setup

    Add the --grpc-port(default: 9736) option while running CLN, and it'll automatically generate the appropriate mTLS certificates.

    Copy the following PEM files from the Lightning directory to a separate directory:

    • ca.pem: CA certificate
    • client.pem: Client certificate
    • client-key.pem: Client private key

    Claude Setup

    • Install Claude
    • Go to settings -> Developer
    • Edit Config
    code
    {
            "mcpServers" : {
                "cln-mcp" : {
                    "command": "Path/to/cln-mcp" (ex: "/Users/MyPC/cln-mcp/target/release/cln-mcp" or the executable unzipped from the release),
                    "args": [
                        "--certs-dir",
                        "Path/to/certificates" (ex: "/Users/MyPC/cln-mcp/certs")
                    ]
                }
            }
        }
    • Restart Claude

    Future Goals

    [ ] Enable it to derive parameters for the RPC calls

    [ ] Choose the most appropriate and useful RPCs for maximum utility

    [ ] Extend support for LND

    [ ] Host multiple servers to make it more efficient

    This is a work in progress. We welcome code reviews, pull requests, and issues based on your usage.

    Similar MCP

    Based on tags & features

    • IM

      Imagen3 Mcp

      Rust·
      46
    • MC

      Mcp Access Point

      Rust·
      135
    • WI

      Winx Code Agent

      Rust·
      19
    • CO

      Code Assistant

      Rust·
      103

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • IM

      Imagen3 Mcp

      Rust·
      46
    • MC

      Mcp Access Point

      Rust·
      135
    • WI

      Winx Code Agent

      Rust·
      19
    • CO

      Code Assistant

      Rust·
      103

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k