STRING Db MCP Server

A comprehensive Model Context Protocol server for accessing STRING protein interaction database with network analysis, functional enrichment, and

Local serverstdioGo

What is the STRING Db MCP server?

A comprehensive Model Context Protocol server for accessing STRING protein interaction database with network analysis, functional enrichment, and comparative genomics tools. That is what the string db 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 7 tools. What each one is for:

  • get_protein_interactions — Get direct interaction partners for a specific protein with confidence scores and evidence types
  • get_interaction_network — Build and analyze protein interaction networks for multiple proteins
  • get_functional_enrichment — Perform functional enrichment analysis using GO terms, KEGG pathways, and other annotations
  • get_protein_annotations — Get detailed protein annotations and functional information
  • find_homologs — Find homologous proteins across different species for comparative analysis
  • search_proteins — Search for proteins by name or identifier across multiple species
  • Multi — species support**: Over 5000 organisms supported

Getting it running

The server ships on npm as npm, 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.

How it compares

Among the database access 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. STRING Db's toolset — get_protein_interactions, get_interaction_network, get_functional_enrichment and 4 more — is a fair guide to whether it matches your workflow. It is maintained by Augmented-Nature; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against STRING Db'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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_protein_interactionsGet direct interaction partners for a specific protein with confidence scores and evidence types
get_interaction_networkBuild and analyze protein interaction networks for multiple proteins
get_functional_enrichmentPerform functional enrichment analysis using GO terms, KEGG pathways, and other annotations
get_protein_annotationsGet detailed protein annotations and functional information
find_homologsFind homologous proteins across different species for comparative analysis
search_proteinsSearch for proteins by name or identifier across multiple species
Multispecies support**: Over 5000 organisms supported

How to install the STRING Db MCP server

{
  "mcpServers": {
    "string-db": {
      "command": "npx",
      "args": ["-y", "npm"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use STRING Db to get protein interactions.
  • Use STRING Db to get interaction network.
  • Use STRING Db to get functional enrichment.

Frequently asked questions

It connects STRING Db to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (get_protein_interactions, get_interaction_network, get_functional_enrichment, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with STRING Db directly.