Granola MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Granola MCP ServerSummarize the action items from my last meeting about the project roadmap"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Granola MCP Server
A Model Context Protocol (MCP) server for integrating Granola.ai meeting intelligence with Claude Desktop and other MCP clients. Access your meetings, notes, and transcripts directly from AI assistants.
⚠️ Disclaimer
This is an unofficial, community-built tool. It is not affiliated with, endorsed by, or supported by Granola, Inc.
This server uses undocumented APIs discovered through network inspection. Use of this tool may violate Granola's Terms of Service. Use at your own risk.
If you are from Granola and would like this repository removed or would like to discuss official API access, please open an issue.
Related MCP server: Granola MCP Server
Features
🔍 Meeting Search - Search meetings by title, content, and participants
📝 Full Content Access - Retrieve complete meeting notes in Markdown format
🏢 Workspace Management - List and filter by workspaces (organizations)
📁 Folder Organization - List and filter by document folders
🔄 Real-time API Access - Direct access to Granola's API
🔐 Secure Authentication - Uses your existing Granola credentials
⚡ Smart Caching - 5-minute cache for optimal performance
Prerequisites
Node.js 18+
Granola.ai installed and logged in on macOS
Claude Desktop (or another MCP client)
Installation
git clone https://github.com/EoinFalconer/granola-mcp-server.git
cd granola-mcp-server
npm install
npm run buildConfiguration
Claude Desktop
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"granola": {
"command": "node",
"args": ["/path/to/granola-mcp-server/index.js"]
}
}
}Then restart Claude Desktop.
Available Tools
Tool | Description | Parameters |
| Search meetings by title/content |
|
| Get meeting metadata |
|
| Get full notes as Markdown |
|
| List all workspaces | - |
| List document folders |
|
| Filter meetings by workspace |
|
| Filter meetings by folder |
|
Usage Examples
Once configured, use natural language in Claude:
"Search for meetings about quarterly planning"
"Get the content from yesterday's standup"
"List all my workspaces"
"Show me meetings in the Sales folder"
How It Works
Authentication
The server reads your existing Granola credentials from:
~/Library/Application Support/Granola/supabase.jsonNo additional login required - it uses your existing Granola session.
API Integration
Direct REST API calls to Granola's backend
ProseMirror content converted to readable Markdown
In-memory caching with 5-minute TTL
Troubleshooting
"Failed to get access token"
Ensure Granola is installed and you're logged in. The server needs:
~/Library/Application Support/Granola/supabase.jsonServer not appearing in Claude
Verify the config path is correct
Run
npm run buildRestart Claude Desktop completely
Development
npm run build # Compile TypeScript
npm run watch # Watch mode
npm run dev # Build and runCredits & Acknowledgments
This project was inspired by and built upon the reverse-engineering work of:
Joseph Thacker - Detailed blog post on reverse-engineering Granola's API
getprobo/reverse-engineering-granola-api - API documentation and research
Thank you for sharing your findings with the community! 🙏
Related Projects
cobblehillmachine/granola-claude-mcp - Python-based, cache file approach
btn0s/granola-mcp - TypeScript, similar API approach
Contributing
Contributions welcome! Please feel free to submit issues and pull requests.
License
MIT © Eoin Falconer
Available Tools
7 toolsfilter_by_folderC
Filter meetings by folder
| Name | Required | Description | Default |
|---|---|---|---|
| folder_id | Yes | Folder ID to filter by |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('filter') but doesn't explain what 'filter' entails—whether it returns a subset of meetings, modifies data, requires permissions, or has side effects. This leaves critical behavioral traits unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It is appropriately sized and front-loaded, directly stating the tool's function without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't clarify what 'filter' returns (e.g., a list of meetings, metadata), how results are structured, or error conditions. For a tool with one parameter but no structured context, more detail is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the parameter 'folder_id' fully documented in the schema. The description adds no additional meaning beyond implying the parameter's role in filtering, so it meets the baseline for high schema coverage without compensating value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('filter') and resource ('meetings') with a specific criterion ('by folder'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'filter_by_workspace' or 'search_meetings', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'filter_by_workspace' or 'search_meetings'. It lacks context about prerequisites (e.g., needing a folder ID from 'list_folders') or exclusions, leaving usage ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
filter_by_workspaceC
Filter meetings by workspace
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_id | Yes | Workspace ID to filter by |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the filtering action without mentioning whether this is a read-only operation, if it requires authentication, what the output format is, or any rate limits. This is inadequate for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste—it directly states the tool's function without unnecessary words. It is appropriately sized and front-loaded, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., a list of meetings, error handling), behavioral traits, or how it differs from siblings. For a tool with no structured data support, this leaves significant gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the input schema fully documents the single parameter 'workspace_id'. The description adds no additional meaning beyond what the schema provides, such as format examples or usage context, which aligns with the baseline score of 3 when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('filter') and resource ('meetings') with the constraint 'by workspace', making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'search_meetings' or 'filter_by_folder', which would require more specificity to earn a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_meetings' or 'filter_by_folder'. It lacks context about prerequisites, such as needing a workspace ID from 'list_workspaces', or exclusions, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meeting_contentC
Get the full notes/content for a meeting in Markdown format
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | Meeting ID to retrieve content for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the output format (Markdown) but doesn't cover important aspects like authentication requirements, rate limits, error conditions, or whether this is a read-only operation. The description provides minimal behavioral context beyond the basic operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the core functionality without any wasted words. It's appropriately sized for a simple retrieval tool with one parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the return value looks like (beyond format), error conditions, or important behavioral constraints. The description should provide more context given the lack of structured metadata.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents the single 'meeting_id' parameter. The description doesn't add any parameter-specific information beyond what's in the schema, meeting the baseline expectation when schema coverage is complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and resource 'full notes/content for a meeting' with format specification 'Markdown format', making the purpose explicit. However, it doesn't differentiate from sibling 'get_meeting_details' which might retrieve different aspects of a meeting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus alternatives like 'get_meeting_details' or 'search_meetings'. The description only states what it does, not when it's appropriate or when other tools should be used instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meeting_detailsB
Get detailed information about a specific meeting
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | Meeting ID to retrieve details for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves details but doesn't specify what 'detailed information' includes, whether it's read-only, if it requires authentication, or any rate limits. This leaves significant gaps in understanding the tool's behavior beyond basic retrieval.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any unnecessary words. It is appropriately sized and front-loaded, making it easy to parse quickly, earning a top score for conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose but lacks details on usage guidelines, behavioral traits, and output format, which are needed for full contextual understanding, resulting in a score of 3 as the minimum viable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'meeting_id' parameter clearly documented. The description adds no additional meaning beyond what the schema provides, such as format examples or constraints, so it meets the baseline score of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('detailed information about a specific meeting'), making it easy to understand what the tool does. However, it doesn't differentiate from sibling tools like 'get_meeting_content' or 'search_meetings', which could have overlapping functionality, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With siblings like 'get_meeting_content' and 'search_meetings' available, it doesn't specify if this is for metadata retrieval, when to choose it over other tools, or any prerequisites, leaving the agent to guess based on context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_foldersC
List all document folders
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_id | No | Optional workspace ID to filter by |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the action ('List') but doesn't describe what 'all' means (e.g., pagination, limits), whether it requires authentication, rate limits, or what the output format looks like. This is inadequate for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple list operation and front-loads the core purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a list operation with no annotations and no output schema, the description is insufficient. It doesn't explain what 'all' entails (e.g., completeness, limitations), the return format, or how it differs from sibling filtering tools. The context signals indicate this tool has parameters and siblings, but the description doesn't address these complexities.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single optional parameter. The description doesn't add any parameter-specific information beyond what's in the schema, but since the schema does the heavy lifting, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('all document folders'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'filter_by_folder' or 'filter_by_workspace' that might also involve folder operations, so it doesn't reach the highest clarity level.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'filter_by_workspace' or 'list_workspaces'. It doesn't mention any prerequisites, exclusions, or specific contexts for usage, leaving the agent to infer relationships from tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_workspacesB
List all available workspaces
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. 'List all available workspaces' implies a read-only operation but doesn't specify whether it requires authentication, returns paginated results, includes metadata, or has rate limits. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's appropriately sized for a simple list operation and front-loads the core purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema) and lack of annotations, the description is minimally adequate but incomplete. It doesn't address what 'available' means (e.g., accessible to current user vs all in system), the format of returned data, or how it differs from sibling tools. For a tool in a context with multiple filtering alternatives, more contextual information would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the absence of inputs. The description doesn't need to compensate for any parameter gaps, and it appropriately doesn't mention parameters. A baseline of 4 is appropriate for zero-parameter tools when the description doesn't introduce confusion.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('all available workspaces'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'filter_by_workspace' or 'list_folders', which would require more specific scope information to earn a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With siblings like 'filter_by_workspace' and 'list_folders' available, there's no indication whether this tool returns unfiltered results, includes nested content, or serves as a broad overview versus more specific queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_meetingsC
Search meetings by title, content, or participants
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for meetings | |
| limit | No | Maximum number of results |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the search functionality but doesn't describe what the tool returns (e.g., meeting IDs, summaries, full details), whether results are paginated, if there are rate limits, or authentication requirements. For a search tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized and front-loaded, clearly stating the tool's purpose without unnecessary elaboration. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns, how results are structured, or any behavioral traits like error handling. For a tool that likely returns multiple results, more context is needed to be fully useful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('query' and 'limit') with descriptions. The description adds no additional parameter semantics beyond what's in the schema, such as query syntax examples or limit constraints. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('search') and resource ('meetings'), and specifies the searchable attributes ('by title, content, or participants'). It distinguishes from siblings like 'get_meeting_content' or 'get_meeting_details' by focusing on search rather than retrieval. However, it doesn't explicitly differentiate from 'filter_by_folder' or 'filter_by_workspace', which might also involve meeting selection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to prefer this search tool over sibling tools like 'filter_by_folder', 'filter_by_workspace', or 'get_meeting_details', nor does it specify any prerequisites or exclusions. Usage is implied but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v1.0.0- First observed
filter_by_folder - First observed
filter_by_workspace - First observed
get_meeting_content - First observed
get_meeting_details - First observed
list_folders - First observed
list_workspaces - First observed
search_meetings
TDQS
Each tool has a clearly distinct purpose with no ambiguity. Filter_by_folder and filter_by_workspace target different filtering criteria, while get_meeting_content and get_meeting_details provide different levels of meeting information. List_folders and list_workspaces are distinct listing operations, and search_meetings offers a broader search capability that doesn't overlap with the filters.
All tool names follow a consistent verb_noun pattern using snake_case. The verbs (filter_by, get, list, search) are applied predictably to nouns (folder, workspace, meeting_content, meeting_details, folders, workspaces, meetings), making the set highly readable and uniform.
With 7 tools, the count is well-scoped for a meetings management server. Each tool earns its place by covering essential operations like filtering, retrieving details, listing resources, and searching, without being overly sparse or bloated.
The tool set provides strong coverage for core meeting operations, including retrieval, listing, filtering, and searching. A minor gap exists in CRUD lifecycle coverage, as there are no tools for creating, updating, or deleting meetings, but agents can likely work around this for read-only use cases.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Memoket — access your recording transcripts, summaries, and key takeaways over MCP.
Let AI agents query data and act across all your business apps via MCP.
MCP-native notes and memory for ChatGPT, Claude, and other AI tools.
- AstrocalOAuthdev.astrocal
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides access to Granola notes, meeting transcripts, calendar events, and document panels through the Granola API, enabling search and retrieval of meeting-related content.75-
- AlicenseNot gradedqualityDmaintenanceEnables access to Granola meeting notes through OAuth authentication, allowing users to search, retrieve, and summarize meeting transcripts and documents.MIT
- AlicenseAqualityCmaintenanceIntegrates local Granola.ai meeting intelligence with Claude Desktop to enable searching and analyzing meeting transcripts, notes, and summaries. Users can perform natural language queries to retrieve meeting details, analyze participant patterns, and access full speaker-identified conversations.5MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides AI agents access to Granola meeting notes. It enables searching notes, retrieving full content with transcripts, and paginating through meeting history.3MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/EoinFalconer/granola-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server