Skip to main content
Glama
laxis-tech

Laxis MCP Server

by laxis-tech

Laxis MCP Server

Add to Cursor Install in VS Code License: MIT

The Laxis MCP Server connects Laxis — the AI meeting note taker and voice dictation tool for professionals — to Claude and other AI tools through the Model Context Protocol. Your assistant can search and read your meeting transcripts, summaries, and participants directly in chat — turning every conversation you've recorded into context your AI can reason over.

Remote, hosted server — nothing to install or run. Laxis hosts the server for you. You just add one URL and your personal API key to your AI client. There is no local binary, Docker image, or npm package to manage.

What is Laxis?

Laxis is the next-generation AI meeting note taker and voice dictation tool built for professionals. It records, transcribes, and summarizes any conversation directly from your computer — no "bot" ever joins the call — and works seamlessly with Zoom, Google Meet, Microsoft Teams, Webex, Slack Huddles, and more.

  • 🎥 Botless meeting recording & transcription — record and instantly transcribe any meeting straight from your computer for a private, professional, and seamless experience. High-accuracy AI handles multiple speakers and technical jargon with ease.

  • 🎙️ AI dictation — voice to text, anywhere — speak instead of type. Laxis turns your voice into clean, perfectly formatted text up to 3× faster than typing, automatically removing filler words ("um," "uh") and adding punctuation. Perfect for drafting emails, notes, and messages by voice.

  • 🌐 Real-time translation — Laxis transcribes and translates conversations live, so you can follow and capture cross-language discussions as they happen.

  • ✍️ Personalized AI summaries — don't just get a transcript. Laxis combines your own real-time notes with the meeting transcript to generate insights that reflect your specific context and priorities.

  • 📊 50+ professional report templates — turn hours of conversation into structured documentation in seconds, including Sales Discovery, Project Updates, User Interviews, and Candidate Screenings.

  • Automated action items — Laxis automatically identifies and extracts tasks, ensuring nothing falls through the cracks.

  • 💬 Real-time AI copilot — chat with Laxis before, during, and after meetings to get real-time insight.

  • 🔄 Seamless CRM & tool integration — automatically sync meeting insights, action items, and customer data directly into Salesforce, HubSpot, Jira, Slack, and your favorite productivity tools.

  • 🔒 Enterprise-grade security — your data is encrypted and private, protected to the highest industry standards.

Sales teams use Laxis to update their CRM instantly and never miss a customer requirement; product managers turn user interviews into actionable PRDs; consultants deliver standardized client reports; recruiters capture every detail of candidate interviews. This MCP server brings all of that recorded knowledge to your AI assistant.

Related MCP server: Chatwoot MCP Server

Use cases

  • Recall decisions and commitments"What did we agree on pricing in my last call with Acme?"

  • Catch up fast"Summarize my meetings from this week and list the action items."

  • Find the exact moment"Find where the customer mentioned their renewal date."

  • Prep for the next call"Who attended the Q3 planning meeting and what did we promise to follow up on?"

Tools

All tools are read-only. The server returns raw snippets from your meetings; your AI client generates the answer. It never writes to your account, makes LLM calls of its own, or touches data that isn't yours.

Tool

Purpose

list_meetings

Browse your recent meetings — title, date, duration, status, and a short summary (metadata only).

search_meetings

Semantic search across your transcripts; returns the most relevant transcript snippets.

get_meeting

Full details for one meeting — participants, AI summary points, and metadata.

get_transcript

The full, paged transcript text, formatted as [m:ss] Speaker: text.

Prerequisites

  1. A Laxis account — sign up at app.laxis.tech.

  2. A personal API key (see below).

  3. An MCP client that supports remote servers with a custom Authorization header — e.g. Claude Code, Cursor, VS Code, or Windsurf. (See Claude Desktop & claude.ai for those clients.)

Get your API key

  1. Go to app.laxis.tech → Settings → Claude (MCP).

  2. Click Generate API key. Copy the value — it looks like laxis_xxxxxxxx….

Treat this key like a password: it grants read access to your meetings. Regenerating the key immediately invalidates the previous one (and any Zapier zaps that share it), so update your connectors afterward. The same screen shows a ready-to-paste claude mcp add command for Claude Code.

The connection endpoint is always:

https://app.laxis.tech/mcp

with the header:

Authorization: Bearer YOUR_KEY

Install

Replace YOUR_KEY below with the key you generated.

claude mcp add Laxis --transport http https://app.laxis.tech/mcp \
  --header "Authorization: Bearer YOUR_KEY"

Then ask Claude something like "Use Laxis to summarize my last meeting."

Cursor

Add to Cursor

The one-click button adds the server with a placeholder key — after installing, open Cursor → Settings → MCP (or ~/.cursor/mcp.json) and replace YOUR_KEY with your real key. Or configure it manually:

{
  "mcpServers": {
    "Laxis": {
      "url": "https://app.laxis.tech/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_KEY"
      }
    }
  }
}

VS Code

Install in VS Code

Requires VS Code 1.101+. You'll be prompted for your API key on first use. To configure manually, add a .vscode/mcp.json to your workspace (this version prompts for the key and stores it securely instead of hard-coding it):

{
  "inputs": [
    {
      "type": "promptString",
      "id": "laxis_pat",
      "description": "Laxis personal API key",
      "password": true
    }
  ],
  "servers": {
    "Laxis": {
      "type": "http",
      "url": "https://app.laxis.tech/mcp",
      "headers": {
        "Authorization": "Bearer ${input:laxis_pat}"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "Laxis": {
      "serverUrl": "https://app.laxis.tech/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_KEY"
      }
    }
  }
}

Claude Desktop & claude.ai (web)

Native one-click custom connectors in Claude Desktop and on claude.ai use OAuth, which is coming soon for Laxis (see Roadmap). Until then, connect Claude Desktop with the mcp-remote bridge (requires Node.js). Edit Settings → Developer → Edit Config (claude_desktop_config.json):

{
  "mcpServers": {
    "Laxis": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "https://app.laxis.tech/mcp",
        "--header", "Authorization: Bearer YOUR_KEY"
      ]
    }
  }
}

Restart Claude Desktop after saving.

Other clients

Any client that speaks Streamable HTTP to a remote MCP server works. Point it at:

  • URL: https://app.laxis.tech/mcp

  • Transport: Streamable HTTP

  • Header: Authorization: Bearer YOUR_KEY

How it works

Your AI client ──(Authorization: Bearer laxis_…)──▶ Laxis MCP Server ──▶ Laxis API

The server is a thin, retrieval-only proxy in front of the Laxis API. It holds no signing keys: it exchanges your personal API key for a short-lived, user-scoped token, fetches the requested meeting data, and returns raw snippets. Your AI client does all the reasoning and answer-writing from those snippets. You only ever see your own meetings, and access stops the moment you regenerate or delete the key.

Roadmap

  • OAuth 2.1 connector — one-click "Add custom connector" support for claude.ai (web) and Claude Desktop, with no API key to copy/paste.

  • Listing on public MCP registries and directories for one-click discovery.

Support

  • Questions / bugs: open an issue.

  • Product help: laxis.com / in-app support.

  • Security: see SECURITY.md — please report privately, not via public issues.

License

MIT © Laxis

A
license - permissive license
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/laxis-tech/laxis-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server