Skip to main content
Glama

NoteMind – AI Notes & Ideas Organizer

NoteMind is a lightweight, intelligent note-organizing server built using FastMCP and SQLite.
It acts as your AI-powered personal memory vault, perfect for learners, developers, and creators who use LLMs and want to capture insights, organize them dynamically, and retrieve them effortlessly.


Features

  • Dynamic Categories – Automatically create categories when adding notes.

  • Smart Note Management – Add, search, and organize your thoughts and AI insights.

  • Keyword & Fuzzy Search – Retrieve relevant notes easily by keywords or similarity.

  • Automatic Category Creation – No need to predefine categories; NoteMind handles it for you.

  • Smart Deletion Tools – Delete notes or entire categories safely with confirmation.

  • Persistent Local Storage – All data is stored securely in data/notes.db.

  • 🔌 MCP Compatible – Works seamlessly with MCP-enabled LLMs like Claude Desktop or custom FastMCP clients.


Related MCP server: Bruin

claude_desktop_config.json

{
  "mcpServers": {
"NoteMind - AI Notes & Ideas Organizer": {
      "command": "C:\\Users\\DELL\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\uv # add uv path",
      "args": [
        "run",
        "--with",
        "fastmcp",
        "fastmcp",
        "run",
        "D:\\Python Projects\\mcp-server\\notemind.py # add project path"
      ],
      "env": {},
      "transport": "stdio",
      "type": null,
      "cwd": null,
      "timeout": null,
      "description": null,
      "icon": null,
      "authentication": null
    }
  }
}

Remote MCP server

https://notemind.fastmcp.app/mcp

Available Tools

8 tools
add_noteA

Add a note under a given category. If the category doesn't exist, it will be created automatically.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYes
categoryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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 usefully reveals the key side effect—missing categories are created automatically—which is not visible from the schema or tool name. It does not discuss duplication or return behavior, but for a simple add operation the essential behavior is disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler. The main action is front-loaded, and the conditional side effect is given in the second sentence. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, with two required string parameters and an output schema, so the description does not need to explain return values. It covers the core behavior and the most important non-obvious side effect. A small gap is the absence of explicit guidance for choosing add_note versus create_category, but the auto-create behavior reduces practical ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description needs to compensate. It explains the category parameter's role and implied existence behavior, but it does not explicitly describe the content parameter or its expected format. The parameter names are simple enough that an agent can infer meaning, but the description adds only partial value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (add), the object (a note), and the placement (under a given category), which maps directly to the 'category' parameter. It is easy to distinguish from sibling tools like create_category or delete_note_by_text because it specifically targets note creation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: use this tool to add a note under a category. The auto-creation sentence provides practical guidance that the agent does not need to call create_category first, though it does not explicitly name alternative tools or state when-not-to-use scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_categoryB

Create a new category if it doesn’t exist.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The phrase 'if it doesn’t exist' discloses conditional creation behavior, which is useful. However, with no annotations, the description does not explain what happens when the category already exists, nor does it mention permissions, side effects, or error behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler words. It is concise, though it may be too sparse to fully carry the behavioral and usage guidance an agent needs.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter tool with an output schema, this is nearly adequate, but the duplicate-handling behavior remains ambiguous. The agent must infer whether an existing category causes an error, a no-op, or a returned existing object.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description never directly discusses the name parameter or any constraints. The parameter is implied by the tool name, but the description adds no meaning about uniqueness, formatting, or validation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the specific operation (create) and resource (category) explicitly, and 'if it doesn’t exist' adds useful idempotency semantics. It is clearly distinguishable from sibling tools like list_categories and delete_category.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use or when-not-to-use guidance, and no alternatives are mentioned. The usage context is only implicit, and nothing tells the agent to check list_categories first or explains how this relates to add_note.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_categoryA

Delete a category and all its associated notes. Requires confirm_delete=True to proceed with deletion.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
confirm_deleteNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. It explicitly warns that deletion cascades to all associated notes and that confirm_delete=True is required. It could add irreversibility or permission details, but the core destructive behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no filler. The primary destructive behavior is front-loaded, and the safety requirement is stated immediately after.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description, combined with the input schema and output schema, gives enough to call the tool: pass the category name and set confirm_delete to true. It does not state what happens when confirm_delete is false, but 'requires' strongly implies no deletion occurs, so this is only a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must explain parameters. It usefully explains confirm_delete, but it never directly defines the required 'name' parameter; the reader has to infer that 'name' identifies the category from the phrase 'Delete a category.'

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and object: 'Delete a category and all its associated notes.' It clarifies the destructive scope and distinguishes this tool from the sibling delete_note_by_text, which targets individual notes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly conveys when to use the tool: when deleting a whole category and everything tied to it. It also states a key precondition, confirm_delete=True, but does not explicitly name sibling alternatives or exclusion cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_note_by_textA

Delete notes containing a given keyword (optionally limited to a category). Requires confirm_delete=True to actually remove them.

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordYes
categoryNo
confirm_deleteNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses an important safety behavior: nothing is actually deleted unless confirm_delete=True, despite the tool's name. It also implies bulk deletion by saying 'notes' rather than 'a note.' It could be more explicit about irreversibility or behavior when confirm_delete is false, but the key destructive guard is revealed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The destructive action and the safety gate are front-loaded, and the optional category scoping is included efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive tool with no annotations and no per-parameter schema descriptions, the description covers the core semantics and the mandatory safety flag. The output schema presumably covers return values. A small gap is not stating what happens when confirm_delete=False, such as whether it is a no-op or returns matching notes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It does: keyword means 'containing' text, category limits the scope, and confirm_delete controls whether removal actually happens. This adds meaning beyond the bare schema types and defaults.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Delete') and a specific resource ('notes containing a given keyword'), and adds an optional category scope. This clearly distinguishes it from sibling tools like delete_category and the read-oriented search_notes/suggest_similar_notes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when the tool is appropriate: deleting keyword-matched notes, optionally filtered by category. It also surfaces the critical prerequisite confirm_delete=True for actual removal. It does not explicitly name alternatives or exclusions, but the keyword-based scope is sufficient for routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_notesA

Retrieve all notes (optionally from a category).

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of behavioral disclosure. 'Retrieve' signals a read-only operation and 'all notes' discloses the broad, unfiltered-by-default scope. It does not mention pagination, ordering, or category matching behavior, but for a simple read tool these are less critical gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with the action and resource front-loaded. The parenthetical for the optional category filter is compact and adds relevant information without any filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is simple with one optional parameter and has an output schema, the description covers the core purpose and parameter role adequately. It is incomplete regarding alternatives like search_notes and the exact value format for category, but it is minimally viable for a straightforward retrieval tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides zero description coverage for the single 'category' parameter. The description adds the key semantic that category is optional and acts as a filter, which meaningfully supplements the schema. It still does not specify whether category expects a name, slug, or ID, leaving some ambiguity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the action (retrieve) and resource (notes), and specifies the optional category filter. It is easily recognizable as a read/list operation and is distinct from create/delete siblings, though it does not explicitly distinguish itself from search_notes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Retrieve all notes' implies the tool is for broad retrieval rather than targeted searching, and the optional category filter adds context. However, there is no explicit guidance on when to prefer this tool over search_notes or how category selection relates to list_categories.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_categoriesA

List all available categories.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. The verb 'List' clearly signals a read-only operation with no side effects, and 'all available categories' states the scope. It does not mention ordering or access nuances, but nothing in the description suggests hidden behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence of five words. It is front-loaded, contains no filler, and does not restate the tool name or schema information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter list operation with an output schema, the description is complete. An agent knows exactly how to invoke the tool (empty input) and what it returns conceptually. No additional guidance about pagination or filters is needed because the description says 'all'.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the input schema is an empty object with 100% coverage, so there is no parameter information for the description to add. The baseline for 0 parameters is 4, which is satisfied because there are no undocumented parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('List') and resource ('all available categories'), exactly matching the tool name. It clearly distinguishes itself from sibling write operations like create_category and delete_category, leaving no ambiguity about what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys that this is the tool to use when the agent needs the full set of available categories. It does not explicitly contrast with siblings, but the sibling list shows no other category-listing tool, so the context is clear and no exclusions are needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_notesA

Search for notes containing a specific keyword.

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral disclosure burden. It discloses the core containment-matching behavior, but it is silent on case sensitivity, search scope, result ordering, and side effects; the presence of an output schema mitigates some return-value ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one efficient sentence with no filler, and the main action is front-loaded. It is appropriately short for a one-parameter search tool, even though it achieves brevity by omitting usage nuance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and an output schema, the description is adequate but bare. It lacks explicit routing relative to sibling tools and does not characterize the result set, leaving the agent to infer key contextual details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single required parameter 'keyword' is mentioned in the description as the term to search for, adding basic meaning beyond the bare string type in the schema. However, with 0% schema description coverage and no detail on matching rules or accepted formats, parameter semantics are only minimally covered.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search'), the resource ('notes'), and the matching criterion ('containing a specific keyword'). It is distinguishable from sibling tools like get_notes and suggest_similar_notes, though it does not explicitly name them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied: call this when you need to find notes by keyword. It provides no explicit when-to-use or when-not-to-use guidance and does not contrast with list-like or similarity-based siblings such as get_notes or suggest_similar_notes.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

suggest_similar_notesC

Suggest notes with similar content (textual similarity).

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.7/5.0
Behavior2/5

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 disclosing behavior. It only mentions 'textual similarity' and does not clarify whether the operation is read-only, whether the query is matched exactly or approximately, whether results are ranked, or what the response contains.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no filler or unnecessary repetition. It is not poorly structured, but it is so brief that it sacrifices useful guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations, low parameter clarity, and no usage guidance, the description is incomplete for an agent deciding between this tool and nearby siblings. The output schema may cover return values, but the core invocation semantics are underspecified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, but it does not clearly define what the 'query' parameter should contain or how it is used. The phrase 'similar content' implies the query relates to note content, but the mapping is indirect.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action ('suggest') and resource ('notes with similar content'), and adds the specificity of textual similarity. However, it does not explicitly distinguish the tool from sibling tools like search_notes, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 search_notes, get_notes, or other sibling tools. Any usage context must be inferred entirely from the phrase 'similar content,' which is too minimal for effective tool selection.

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.

  1. 8 tool updatesv0.1.0
    • First observedadd_note
    • First observedcreate_category
    • First observeddelete_category
    • First observeddelete_note_by_text
    • First observedget_notes
    • First observedlist_categories
    • First observedsearch_notes
    • First observedsuggest_similar_notes

TDQS

A3.7/5.0
Disambiguation5/5

Each tool clearly targets either categories or notes, with distinct actions: create/list/delete for categories and add/get/search/suggest/delete for notes. The overlap between get_notes and search_notes is mild and well-defined by keyword filtering. No two tools appear to do the same job.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern, such as create_category, list_categories, add_note, and delete_note_by_text. Minor verb variation between add, create, get, and list is acceptable since the objects and actions remain clear.

Tool Count5/5

Eight tools is a well-scoped set for a note-and-category management server. Each tool covers a distinct operation without unnecessary redundancy or bloat.

Completeness3/5

The server covers create, read, search, and delete operations for both categories and notes, plus a similarity feature. However, there is no update/edit operation for notes or categories, and notes can only be deleted by keyword rather than by a stable identifier, which creates notable lifecycle gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    A local-first CLI and MCP server that helps you build and search a personal knowledge vault from Markdown notes, with semantic search and AI-powered features like stale note detection and session memory harvesting. It’s provider-agnostic, requires no GPU in its default mode, and exposes your vault as long-term memory to any MCP-compatible AI tool like Claude Code.
    47
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.
    6
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    A personal notes MCP server that allows AI assistants to create, search, edit, and manage notes stored in a local SQLite database.
    6
    MIT

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/AdityaTheDev/notemind-mcpserver'

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