Connect Claude Code to Sembly via MCP
Claude Code is Anthropic’s agentic command-line interface. By connecting Sembly AI's Model Context Protocol (MCP) server to your local Claude environment, you can enable Claude to search your meeting transcripts, pull action items, and reference your team's discussions directly from your terminal.
Prerequisites
- Claude Code CLI installed and authenticated on your machine.
- An active Sembly AI account.
- Your Sembly Bearer Token (see the Configure Sembly MCP Server guide to generate one in your web app settings).
Adding Sembly Server to Claude Code
There are two ways to connect the Sembly server to Claude Code: using the quick CLI command or by manually editing your configuration file.
Option A: Using the CLI (Recommended)
Sembly operates as a remote HTTP MCP server authenticated via a Bearer token. To register it with Claude Code, open your terminal and run the following command (replace the placeholder with your actual token):
claude mcp add sembly --transport http <https://mcp.sembly.ai/mcp> \ --header "Authorization: Bearer <your_token_from_webapp>"
💡 Note on naming: In the command above, we named the integration
sembly. You can change this alias to anything you prefer.
Option B: Configuring via mcp.json directly
If you prefer to define your tools manually (or want to commit a project-specific setup), you can edit your mcp.json configuration file directly.
Open or create your mcp.json file and add Sembly to your mcpServers object using the following structure:
JSON
{
"mcpServers": {
"sembly": {
"url": "<https://mcp.sembly.ai/mcp>",
"transport": "http",
"headers": {
"Authorization": "Bearer <your_token_from_webapp>"
}
}
}
}
Save the file. Claude Code will automatically detect the new server configuration.
Verifying the Integration
To confirm Claude Code has successfully indexed Sembly's workspace tools:
-
Start an interactive Claude session in your terminal:Bash
claude
-
Once inside the prompt, run the internal tool-inspection command:Plaintext
/tools
- Look through the returned list. You should see Sembly's tools (such as
get_meetings,search_transcripts, orget_tasks) marked as active.
Trying an Example Prompt
You can now reference your meetings naturally while writing code. Try testing the connection with prompts like:
- "Check my Sembly meeting transcripts from yesterday afternoon and draft a Markdown summary of the technical decisions we made."
- "Search my meetings for any mention of 'database migration' and list the open action items assigned to me."
-
"Look at our weekly engineering sync meeting and use the agreed points to update this repository's
CHANGELOG.mdfile."
Comments
0 comments
Article is closed for comments.