MCP demo server for OSLC-related code

Hi all,

If you are exploring LLM-aided development, you are welcome to give a new MCP server a try. It gives you an ability to search over a large number of OSLC-related open-source code (114 repos as of date). To use it in VS Code, add .vscode/mcp.json to the workspace with the following contents:

{
    "servers": {
        "sourcebot": {
            "type": "stdio",
            "command": "npx",
            "args": [
                "-y",
                "@sourcebot/mcp@latest"
            ],
            "env": {
                "SOURCEBOT_HOST": "https://oslc-sourcebot.berezovskyi.me/"
            }
        }
    }
}

Here is an example of how it can be used:

The server can also be used for regular search over various OSLC repos: Sourcebot

We also try to maintain a table of how up-to-date various OSS repos are w.r.t. Lyo library releases: https://github.com/eclipse-lyo/lyo#test-and-sample-repositories

Cheers,
Andrew