Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Mosaic Pre Clinical Intelligence
M
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Mosaic Pre Clinical Intelligence

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Pre-clinical drug discovery intelligence β€” targets, compounds, patents, trials, whitespace

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "mosaic-pre-clinical-intelligence-2": {
      "command": "npx",
      "args": [
        "-y",
        "mosaic-pre-clinical-intelligence-2"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

mosaic-mcp

Pre-clinical drug discovery intelligence as an MCP server. Query 760+ drug targets, 70K+ compounds, 48K+ papers, 18K+ clinical trials, and 16K+ patents through 44 specialized tools β€” 16 free for discovery, 28 Pro for competitive landscapes, whitespace, and thesis-grade analysis.

Which one do you want?

This package is bring-your-own-database. It is the MCP tool layer only β€” it ships the queries, not the data. You point it at a PostgreSQL instance you control and it serves 44 tools over it. There is no public read-only credential for Mosaic's knowledge graph, and earlier versions of these docs implied otherwise.

If you want Mosaic's actual curated KG β€” 760+ targets, 70K+ compounds, 48K+ papers, 18K+ trials, 16K+ patents, kept current by a monthly refresh β€” use the hosted server instead. It needs no database and no local install:

  • Remote MCP: https://mcp.getmosaic.dev/sse
  • Sign in / API keys: https://getmosaic.dev

Quick Start (self-hosted)

Terminal
pip install mosaic-mcp

With Claude Desktop

Add to your claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "mosaic": {
      "command": "mosaic-mcp",
      "env": {
        "DATABASE_URL": "postgresql://USER:PASSWORD@YOUR-HOST:5432/mosaic_db?sslmode=require"
      }
    }
  }
}

With Claude Code

Terminal
claude mcp add mosaic -- mosaic-mcp

Standalone

server.ts
export DATABASE_URL="postgresql://..."   # your own Postgres
export MOSAIC_API_KEY="msk_..."          # Optional β€” for Pro tools
mosaic-mcp                               # stdio transport

This package is stdio-only. --transport sse exits with NotImplementedError; remote transport is served by the hosted endpoint above, not by this package. The flag was previously documented as working.

Tools

Free Tier (16 tools) β€” discovery + workspace

ToolDescription
mosaic_search_targetsSearch drug targets by name, gene symbol, or keyword
mosaic_get_target_profileComprehensive target dossier (biology, compounds, scores)
mosaic_get_target_compoundsCompounds tested against a target with SAR data
mosaic_get_target_patentsPatent landscape for a target
mosaic_get_target_papersLiterature for a target
mosaic_get_target_structure3D structure and ligandability summary for a target
mosaic_kg_statsKnowledge graph overview statistics
mosaic_list_indicationsAvailable disease indications
mosaic_list_subindicationsSub-indications within an indication area
mosaic_subindication_breakdownPer-target activity across sub-indications
mosaic_target_scoresTarget attractiveness scoring
mosaic_target_wishlist_addAdd a target to your personal wishlist
mosaic_watchlist_createCreate a watchlist
mosaic_watchlist_add_itemAdd an item to a watchlist
mosaic_watchlist_getRetrieve a watchlist
mosaic_watchlist_listList your watchlists

Pro Tier (28 additional tools) β€” analysis + whitespace

The committed-verdict layer. Includes the whitespace and differentiation tools: mosaic_synthetic_lethal_whitespace, mosaic_modality_gaps, mosaic_resistance_bypass_map, mosaic_find_undruggable_targets, mosaic_talent_migration, mosaic_emerging_signals, and mosaic_assess_druggability.

Plus the full analysis set: competitive landscape, pathway context, compound selectivity, indication landscape, target validation, clinical pipeline, compound analogs, target comparison, similar-target search, opportunity finding, organization portfolio, target network, mechanism of action, evidence maps, relation search, polypharmacology, clinical trial results, FDA regulatory status, drug comparison, drug repurposing candidates, and KOL discovery.

Data Coverage

EntityCount
Drug Targets764 (oncology + neuroscience + cardiovascular)
Compounds71,512
Clinical Trials18,580
Papers48,773
Patents16,189
Semantic Relations13,704
Indications24,949
Organizations36,691

Counts as of 2026-07-18. The live figures are always mosaic_kg_stats; run it rather than trusting this table. Targets went 802 β†’ 764 when duplicate and malformed rows were merged, and organizations 153,852 β†’ 36,691 when affiliation parsing was corrected β€” both are the count getting more honest, not the corpus shrinking.

Configuration

VariableRequiredDescription
DATABASE_URLYesPostgreSQL connection string β€” your own instance
MOSAIC_API_KEYNoAPI key for Pro tool access
MOSAIC_TIERNoOverride tier (free, pro, enterprise)

Changelog

Full history in CHANGELOG.md. Latest: 1.6.0 β€” adds mosaic_start_here, a free, ungated orientation tool that maps all 44 tools and states plainly that this package is bring-your-own-database. Selected older entries below.

1.2.0 β€” breaking change to the watchlist tools

owner_key must now be anon:<token>. It was previously free text documented as "user id, email, or anon:<token>", which meant one caller could name another and read their lists. A bare id or email is now refused.

Generate a random token, keep it, and pass the same one every time β€” it is what proves a list is yours. Calls that pass an email or bare id now fail with a message telling you this; they do not silently return someone else's data, which is what the old behaviour risked.

Also in 1.2.0:

  • Watchlist reads are owner-scoped in the SQL, so a watchlist UUID is no longer sufficient for read or write access, and they are excluded from the response cache (a cache hit would otherwise return before the ownership check ran).
  • mosaic_synthetic_lethal_whitespace now returns candidates and coupled_unassessed as two separate lists. Partners outside the curated universe carry null counts instead of zeros β€” an unmeasured competitor count previously read as "no competition."
  • Project metadata now points at getmosaic.dev. 1.1.0 and earlier pointed at a domain that is not ours.
  • Query/response layer resynced to the hosted server. This includes the protein-protein-interaction reader fix: 1.1.0 counted PPIs from the legacy target_interactions table, while the hosted server had already moved to the populated target_interactions_ext table. Driven against hosted on 2026-07-19, EGFR reports 50 interactions at confidence 0.999; the 1.1.0 reader does not read that table for the profile count.

License

Apache 2.0 for the MCP server tools. The hosted knowledge graph data requires a subscription for Pro-tier access.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Moltbridge logoMoltbridge

    Network intelligence for AI agents. Broker discovery and capability matching.

    πŸ’» Developer Tools0 views
    Compare vs Moltbridge β†’
  • TokenSave logoTokenSave

    Code intelligence for 15+ languages: semantic graph queries instead of file reads. 37 MCP tools.

    πŸ’» Developer Tools0 views
    Compare vs TokenSave β†’
  • Open Notebook logoOpen Notebook

    MCP server that wraps the Open Notebook API

    πŸ’» Developer Tools0 views
    Compare vs Open Notebook β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Mosaic Pre Clinical Intelligence

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mosaic-pre-clinical-intelligence": { "command": "npx", "args": ["-y", "Mosaic Pre-Clinical Intelligence"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMosaic Pre Clinical Intelligence AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mosaic-pre-clinical-intelligence-2?style=directory)](https://allmcps.com/mcp/mosaic-pre-clinical-intelligence-2)
HTML Embed
<a href="https://allmcps.com/mcp/mosaic-pre-clinical-intelligence-2"><img src="https://allmcps.com/api/badge/mosaic-pre-clinical-intelligence-2?style=directory" alt="Mosaic Pre Clinical Intelligence on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Mosaic Pre Clinical Intelligence β†’Install in Claude DesktopInstall in CursorInstall in VS Code