S4B S4B

Connect your AI agent to S4B

Give this to your AI

Copy this into your AI chat (Claude, ChatGPT, Gemini, or any MCP-compatible assistant) and hit send:

Go through https://mcp.s4b.be/sse and tell me what S4B does — trainings, hardware, consulting, everything.

That's it. Your AI will browse our content and answer.
Change the question to anything you want — it has access to all our public pages.

Add to your IDE

Cursor — create or edit .cursor/mcp.json:

{
  "mcpServers": {
    "s4b-content": {
      "url": "https://mcp.s4b.be/sse",
      "transport": "sse"
    }
  }
}

VS Code — create or edit .vscode/mcp.json:

{
  "servers": {
    "s4b-content": {
      "url": "https://mcp.s4b.be/sse",
      "type": "sse"
    }
  }
}

Integrate programmatically

Prerequisite: pip install mcp

import asyncio
from mcp import ClientSession
from mcp.client.sse import sse_client

async def main():
    async with sse_client("https://mcp.s4b.be/sse") as (read, write):
        async with ClientSession(read, write) as session:
            await session.initialize()

            tools = await session.list_tools()
            print(f"{len(tools.tools)} tools available")

            result = await session.call_tool("search_pages", {
                "model": "claude-4-opus",
                "query": "AI training"
            })
            print(result.content[0].text)

asyncio.run(main())

Available tools

All tools require the model parameter (e.g. "claude-4-opus").

ToolDescription
search_pagesSearch public pages by title or content
get_pageGet full content of a page by its URL slug
list_pagesList public pages, optionally filtered by section
list_glossary_termsList AI glossary terms, filtered by letter
list_trainingsList trainings from catalog, filtered by type
get_trainingGet full details of a training by reference
list_sessionsList upcoming training sessions
list_productsList products from catalog, filtered by type
get_productGet full details of a product by reference
get_usage_statsGet API usage statistics
25+
Années systèmes enterprise
24/7
AI-Powered Edge Monitoring
5
Pays d'opération
Top 1%
AI-Assisted Development

Vous avez un projet, une question, un doute ?

Premier échange gratuit. On cadre ensemble, vous décidez ensuite.

Prendre rendez-vous →