Back to MCP Servers

Fellow.ai MCP Server

Official Fellow MCP server that gives AI assistants secure, read-only access to your meeting transcripts, summaries, action items, and participants.

Collaboration by Fellow OAuth2 active
Overview

Fellow's MCP server is an official, provider-hosted connector that lets AI assistants query your Fellow meeting data using natural language. It exposes meeting recaps, transcripts, action items, decisions, talking points, and participant information so an LLM can answer questions like "what did we decide in last week's product review?" without you switching apps or copy-pasting notes.

The server is hosted by Fellow at https://fellow.app/mcp and uses OAuth2 for authentication. Access is gated by your existing Fellow permissions: the connector can only read meetings you already have rights to view, and workspace admins control whether MCP connections can be created at all. Fellow is an Anthropic-verified connector in the Claude directory, and the server also works with ChatGPT (Custom Connectors plan) and Cursor.

Notably, all five tools are read-only. The server is designed for retrieval and summarization, not for editing notes or creating action items in Fellow. SOC2 Type II, HIPAA, and GDPR readiness are advertised, and admins can revoke individual connections and review last-used timestamps from workspace settings.

Tools

Tool Description
search_meetings Search across meetings in your Fellow workspace by keyword, participant, or date.
get_meeting_summary Retrieve the AI-generated summary, decisions, and talking points for a specific meeting.
get_meeting_transcript Fetch the full transcript of a recorded meeting.
get_action_items Retrieve action items captured from a meeting, including assignees and due dates.
get_meeting_participants List attendees and participants for a meeting.
Setup Guide

Fellow's MCP server is hosted by Fellow at https://fellow.app/mcp. No installation, no local server, no API keys to paste. Connection is OAuth-based.

Prerequisites

  • A Fellow workspace with MCP enabled. A workspace admin must go to Workspace Settings → Security and toggle on "Allow users to create MCP connections."
  • An MCP-compatible client (Claude, ChatGPT, or Cursor).

Claude (recommended path)

Fellow is an Anthropic-verified connector. Setup requires no JSON config.

  • In Claude, open Settings → Connectors → Browse connectors.
  • Search for Fellow.ai and click Add to your team.
  • Open the Connectors menu in a chat, toggle on Fellow, and sign in with your Fellow credentials to authorize.

ChatGPT

  • Requires the Custom Connectors plan and Developer mode enabled by an admin.
  • Create a new connector pointing at https://fellow.app/mcp. Leave OAuth client ID and secret blank (Fellow handles registration automatically).
  • Authorize with your Fellow credentials.

Cursor

  • Go to User Settings → Apps and Integrations.
  • Install Fellow and authorize via OAuth.

Generic MCP client config

For clients that accept a remote MCP server URL:

{
  "mcpServers": {
    "fellow": {
      "url": "https://fellow.app/mcp"
    }
  }
}

Managing connections

  • Users: User Settings → API & MCP Connections in Fellow.
  • Admins: Workspace Settings → Security to view, revoke, or disable connections.
Use Cases
  • Ask "what action items do I own from this week's meetings?" and have Claude pull them straight from Fellow.
  • Summarize a 1:1 history with a direct report by searching meetings tagged with their name and combining the summaries.
  • Pull a transcript into Claude to extract quotes, objections, or commitments made during a customer call.
  • Cross-reference meeting decisions with CRM or project data to build status reports and exec briefs.
  • Identify recurring blockers or themes across team meetings by searching and summarizing multiple recaps at once.
Example Prompts
  • "Search Fellow for any meetings about the Q3 pricing change and summarize the decisions."
  • "Pull the transcript of yesterday's customer call with Acme and list every objection they raised."
  • "What action items were assigned to me in the last two weeks? Group them by project."
  • "Summarize my last three 1:1s with Sarah and highlight any recurring concerns."
  • "Who attended the engineering planning meeting last Thursday, and what did we agree to ship?"
Pros
  • Official, Fellow-maintained server with an Anthropic-verified Claude connector. No third-party trust required.
  • Zero-config setup for Claude: no URLs, OAuth client IDs, or local processes to manage.
  • Permissions inherit from Fellow, so the LLM cannot see meetings the user cannot already access.
  • Admin governance: workspace owners can enable, disable, and revoke individual MCP connections.
Limitations
  • Read-only. You cannot create or edit meeting notes, action items, or agendas through the MCP server.
  • Requires a workspace admin to enable MCP connections before users can connect.
  • ChatGPT integration requires the Custom Connectors plan, which is not available on all tiers.
Alternatives
  • Granola and other AI meeting-notes tools have begun shipping MCP integrations for transcript access.
  • Fireflies.ai offers an API that can be wrapped as an MCP server for similar meeting search and summary use cases.
  • liba2k/fellow-mcp, an unofficial community MCP server for Fellow if you need self-hosting.