mcp_gitbook

jhyang21/mcp_gitbook

3.2

If you are the rightful owner of mcp_gitbook and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A simple MCP (Model Context Protocol) server implementation using the Python MCP SDK with FastMCP.

NOT COMPLETE

MCP Server Example

A simple MCP (Model Context Protocol) server implementation using the Python MCP SDK with FastMCP.

Setup

  1. Install dependencies using uv:
uv add "mcp[cli]" requests python-dotenv

Running the Server

Run the server:

python src/mcp_gitbook/main.py

Available Tools

example_tool

An example tool that echoes a message back.

Input schema:

{
    "type": "object",
    "properties": {
        "message": {
            "type": "string",
            "description": "Message to echo"
        }
    },
    "required": ["message"]
}

Example usage:

{
    "method": "call_tool",
    "params": {
        "name": "example_tool",
        "arguments": {
            "message": "Hello, MCP!"
        }
    }
}