Docebo MCP Server

Docebo MCP Server

A Model Context Protocol server implementation using StreamableHTTPServerTransport for HTTP-based communication with support for server-sent events (SSE) and session management.

Category
Visit Server

README

MCP Streamable HTTP Server Example

This directory contains an example implementation of a Model Context Protocol (MCP) server using the @modelcontextprotocol/sdk.

It utilizes the StreamableHTTPServerTransport to handle MCP communication over HTTP, supporting bidirectional communication including server-sent events (SSE) for notifications.

It also includes the simpleStreamableHttpClient.ts to start a client and interact with the server

Features

  • Implements the Model Context Protocol (MCP).
  • Uses StreamableHTTPServerTransport for HTTP-based communication.
  • Manages client sessions using the mcp-session-id header.
  • Handles client requests (POST), server notifications (GET via SSE), and session termination (DELETE).
  • Includes a basic example tool (echo).
  • Built with TypeScript and hono server.

Prerequisites

  • Node.js (version recommended by the project, e.g., >= 18)
  • npm or yarn

Installation

  1. Navigate to the docebo-mcp-server directory:
    cd docebo-mcp-server
    
  2. Install dependencies:
    npm install
    

Building

To compile the TypeScript code to JavaScript:

npm run build

This will output the compiled files to a build directory.

By default, the server listens on port 3000 and exposes the MCP endpoint at /mcp.

API Endpoint

  • URL: /mcp
  • Methods:
    • POST: Used by clients to send requests (including the initial initialize request).
    • GET: Used by clients to establish an SSE connection for receiving server-to-client notifications.
    • DELETE: Used by clients to terminate the current MCP session.

Session Management

The server manages client sessions using the mcp-session-id HTTP header.

  1. When a client sends an initialize request without a session ID, the server creates a new session and a new transport, returning the sessionId in the response.
  2. Subsequent requests (POST, GET, DELETE) from the client must include the assigned mcp-session-id header for the server to route the request to the correct transport instance.
  3. The DELETE /mcp request terminates the session associated with the provided mcp-session-id.

Tools

Tools can be added in the tools directory

Run the Server

npm run dev:hono

Running the Client

Use the MCP inspector

npx @modelcontextprotocol/inspector

or you can use a CLI

npm run start:simpleClient

You can use the commands shown in this client to interact with the server, like

list-tools

Claude Desktop as of this writing doesn't support HttpStreamable protocol. Add the server configuration to your Claude Desktop config file (usually located at ~/Library/Application Support/Claude/claude_desktop_config.json in macOS) and restart Claude Desktop:

{
  "mcpServers": {
    "docebo": {
      "command": "npx",
      "args": ["mcp-remote", "http://127.0.0.1:3000/mcp"],
      "env": {
        "BEARER_TOKEN_BEARERAUTH": "<your_token>"
      }
    }
  }
}

Remote MCP Server are still being developed/enhanced by different MCP Hosts like Claude Desktop.

MCP servers can be deployed in 2 different ways:

  1. Local MCP Server with Remote API
graph LR
    subgraph "Your Computer"
        C1[MCP Host w/ Client]
        S1[MCP Server]
    end
    
    subgraph "Remote Servers"
        API1[Remote API]
    end
    
    C1 <--> S1
    S1 <--> API1

  style C1 fill:#2e7d32,color:#ffffff
  style S1 fill:#f57c00,color:#ffffff
  style API1 fill:#c2185b,color:#ffffff

  1. Local Host/Client connecting to Remote MCP Server
graph LR
    subgraph "Your Computer "
        C2[MCP Host w/ Client]
    end
    
    subgraph "Remote Server"
        S2[MCP Server]
        API2[Remote API]
    end
    
    C2 <-.-> S2
    S2 <--> API2

  style C2 fill:#2e7d32,color:#ffffff
  style S2 fill:#f57c00,color:#ffffff
  style API2 fill:#c2185b,color:#ffffff

There are 2 forms of authorization:

  1. MCP protocol provides authorization capabilities at the transport level, enabling MCP clients to make requests to restricted MCP servers on behalf of resource owners. This is what the new Authorization proposal addresses.
  2. The MCP Server needs to know how to authenticate with the remote APIs as well.

This application needs a bearer token that is then passed from the MCP Client to the MCP Server and the MCP Server uses this to call the remote APIs. This system is not ideal if the MCP Server have to deal with more than one remote API system.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured