
Once you enable Sembly MCP access and create an MCP token, you can add the Sembly MCP server to your MCP client.
Sembly MCP is a remote MCP server using a Basic Auth token. To add it to your MCP client, specify the following (either via UI or JSON configuration):
Server URL
https://mcp.sembly.ai/mcp - If your account data resides in the United States πΊπΈ
https://mcp-eu.sembly.ai/mcp - If your account data resides in the European Union πͺπΊ
Access token
Bearer TOKEN_VALUE
Use the token value you obtained during token creation in the Sembly web app. You can check how to create a token here.
Hereβs a server entry for JSON config for some MCP clients:
If your account data resides in the United States
"mcpServers": {
...
"SemblyAI": {
"type": "streamable-http",
"url": "https://mcp.sembly.ai/mcp",
"headers": {
"Authorization": "Bearer TOKEN_VALUE"
}
}
...
}
If your account data resides in the European Union
"mcpServers": {
...
"SemblyAI": {
"type": "streamable-http",
"url": "https://mcp-eu.sembly.ai/mcp",
"headers": {
"Authorization": "Bearer TOKEN_VALUE"
}
}
...
}