Pubmed Search MCP Server

The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name

Local serverstdio

What is the Pubmed Search MCP server?

The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype. That is what the pubmed search mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • add-note — Adds a new note to the server
  • Resources — The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name
  • Prompts — The server provides a single prompt: - summarize-notes: Creates summaries of all stored notes - Optional "style" argument to control detail level
  • Tools — The server implements one tool: - add-note: Adds a new note to the server - Takes "name" and "content" as required string arguments - Updates server
  • Debugging — Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP

Getting it running

The server ships on npm as @modelcontextprotocol/inspector, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: UV_PUBLISH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the planning and project tracking options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Pubmed Search's toolset — add-note, Resources, Prompts and 2 more — is a fair guide to whether it matches your workflow. It is maintained by wavelovey; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Pubmed Search's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
add-noteAdds a new note to the server
ResourcesThe server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype
PromptsThe server provides a single prompt: - summarize-notes: Creates summaries of all stored notes - Optional "style" argument to control detail level (brief/detailed) - Generates prompt combining all current notes with style
ToolsThe server implements one tool: - add-note: Adds a new note to the server - Takes "name" and "content" as required string arguments - Updates server state and notifies clients of resource changes
DebuggingSince MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).

How to install the Pubmed Search MCP server

"mcpServers": {
    "pubmed_search": {
      "command": "uv",
      "args": [
        "--directory",
        "/Users/nofuture/Documents/GitHub/pubmed_search",
        "run",
        "pubmed_search"
      ]
    }
  }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
UV_PUBLISH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Pubmed Search to add-note.
  • Use Pubmed Search to Resources.
  • Use Pubmed Search to Prompts.

Frequently asked questions

It connects Pubmed Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (add-note, Resources, Prompts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Pubmed Search directly.