Partner Login

Integrating with Software-Defined Brain Technology

Both the Agentic Access Layer and MCP Server Mesh use the same underlying MCP technology, but serve different integration scenarios:

Developing Your Own MCP Server

These headers are required for authentication and authorization.

Note: The following configuration is provided as an example using Entra ID.

X-User-Id: 12345678-90ab-cdef-1234-567890abcdef
X-User-Email: user@yourdomain.com

MCP Server Discovery

To enable SDB to discover all MCP servers, you must redeploy SDB with the necessary appsettings configuration for MCP servers. SDB will only discover MCP servers that are listed in its configuration.

Note: The following configuration is provided as an example using Entra ID.

appsettings.json Configuration


{
    "McpServers": [
        {
            "McpServer": {
                "Name": "YourMcpServer",
                "Endpoint": "https://yourmcpserver.azurewebsites.net/",
                "RedirectUri": "https://yourmcpserver.azurewebsites.net/signin-oidc",
                "AppId": "11111111-90ab-cdef-1234-567890abcdef",
                "AppIdUri": "api://11111111-90ab-cdef-1234-567890abcdef"
            }
        },
        {
            "McpServer": {
                "Name": "AnotherMcpServer",
                "Endpoint": "https://anothermcpserver.azurewebsites.net/",
                "RedirectUri": "https://anothermcpserver.azurewebsites.net/signin-oidc",
                "AppId": "22222222-90ab-cdef-1234-567890abcdef",
                "AppIdUri": "api://22222222-90ab-cdef-1234-567890abcdef"
            }
        }
    ]
}

Authentication and Authorization