Skip to main content
Glama

propaths-mcp

An MCP server that exposes the ProPaths verified protein-interactome as read-only tools for AI agents. It is a thin client over the public ProPaths API (https://propaths.net), so every tool returns exactly the API's JSON. No account, no API key.

ProPaths reads a protein's primary literature and returns a verified graph of typed, directed, mechanistic interactions plus a pathway ontology. One protein (ATXN3) is fully mapped today.

Quickstart (Claude Desktop / any MCP client)

Add this to your MCP client config. uvx fetches and runs the server; nothing to clone or install.

{
  "mcpServers": {
    "propaths": {
      "command": "uvx",
      "args": ["propaths-mcp"]
    }
  }
}

Then ask, e.g., "search ProPaths for SCA3 and summarize its strongest mechanistic interaction." The agent will call search_proteins then get_protein, and drill in with get_interaction.

Prefer the raw API? It is public and keyless:

curl https://propaths.net/api/protein/ATXN3
curl 'https://propaths.net/api/search?q=SCA3'

Tools

Tool

What it does

search_proteins(q, limit=20)

Find a protein by symbol, alias, or name (start here)

get_protein(symbol)

Compact interactome overview (the main entry point)

get_interaction(interaction_id, query=None)

One interaction's full mechanism + evidence

get_interaction_between(a, b)

The interaction(s) between two proteins, in one call

list_interactions(symbol, kind=, type=, pathway=, min_evidence=, sort=, limit=)

Filtered/sorted headline rows

list_interaction_types()

The controlled vocabulary (edge kinds, types, directions) + counts

get_pathway(pathway_id)

A pathway node with its lineage and member interactions

get_pathway_tree()

The full pathway scaffold (resolves pathway ids to names)

get_highlights()

The best-evidenced interactions

export_network(symbol, format="tsv")

Export a protein's network as TSV / SIF / GraphML (Cytoscape, networkx)

describe_schema()

The graph vocabulary + how to use the tools (offline)

Also exposed as MCP resources (propaths://schema, propaths://interaction-types, propaths://pathways/tree, and the propaths://protein/{symbol} template) and prompts (profile-protein, strongest-evidence, explain-pathway).

All tools are read-only and idempotent.

Configuration

Env var

Default

Purpose

PROPATHS_API_URL

https://propaths.net

API base URL. Point at http://localhost:8000 to run against a local API.

Run without uvx

pip install propaths-mcp
propaths-mcp            # runs the stdio server
# or: python -m propaths_mcp

Before it is published, you can run straight from the repo:

uvx --from git+https://github.com/Tahsin-Kazi/propaths-mcp propaths-mcp

Notes

  • Read-only and public; reads are rate-limited per client. Write/enrichment access and a hosted MCP are gated. Get in touch.

  • Errors are graceful: a missing protein returns {"error": "...", "status": 404}; an unreachable API raises with a hint.

Docs: https://propaths.net/quick-start · License: MIT

-
license - not tested
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

  • Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.

  • Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.

View all MCP Connectors

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/Tahsin-Kazi/propaths-mcp'

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