
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
truthstack-mcp
Advanced tools
TruthStack MCP Server — Supplement-drug interaction safety intelligence for AI agents
The first supplement-drug interaction safety tool for AI agents.
TruthStack provides structured, evidence-based supplement safety intelligence via the Model Context Protocol. Instead of relying on LLM training data that hallucinates safety information, your agent calls TruthStack for deterministic, cited risk assessments.
LLMs confidently say "ashwagandha is generally safe with sertraline." TruthStack's API returns MODERATE RISK with 25 FDA adverse event reports and CYP3A4 pathway conflict data. That gap kills people.
| Tool | What It Does | When to Use |
|---|---|---|
check_interactions | Supplements + medications → risk level, FAERS signals, CYP conflicts | User mentions supplements + meds together |
search_compounds | Fuzzy name search (584 aliases, handles misspellings/brands) | Need to resolve messy input ("mag gly", "KSM-66") |
get_compound_info | Full compound profile + all interactions | Deep dive on a specific supplement |
explain_interaction | Human-readable WHY — mechanism, severity, evidence summary | Need to explain risk to a user |
get_evidence | Raw evidence: FAERS counts, CYP data, research grades, label warnings | Need to cite sources or provide provenance |
Contact chris@truthstack.co or visit truthstack.co
git clone https://github.com/truthstack/truthstack-mcp.git
cd truthstack-mcp
npm install
Edit ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"truthstack": {
"command": "node",
"args": ["/path/to/truthstack-mcp/server.js"],
"env": {
"VAULT_API_URL": "https://api.truthstack.co",
"VAULT_API_KEY": "your-api-key"
}
}
}
}
Restart Claude Desktop. You'll see TruthStack tools available in the tool picker.
Ask Claude: "I take ashwagandha, fish oil, and magnesium with sertraline. Is this safe?"
Claude will call check_interactions and return a structured risk assessment with FDA adverse event data.
from langchain_community.tools import MCPTool
# If using MCP adapter
truthstack = MCPTool(server_path="./server.js", env={
"VAULT_API_URL": "https://api.truthstack.co",
"VAULT_API_KEY": "your-key"
})
# Or call the REST API directly
import requests
response = requests.post(
"https://api.truthstack.co/api/interactions/check",
headers={"X-API-Key": "your-key"},
json={
"supplements": ["ashwagandha", "fish oil", "magnesium"],
"medications": ["sertraline"]
}
)
print(response.json())
Every MCP tool maps to a REST endpoint:
| MCP Tool | REST Endpoint |
|---|---|
check_interactions | POST /api/interactions/check |
search_compounds | GET /api/compounds/search?q={query} |
get_compound_info | GET /api/compounds/{id} + GET /api/compounds/{id}/interactions |
explain_interaction | Composite (search + interactions + drug profile) |
get_evidence | Composite (search + interactions + drug profile) |
Base URL: https://api.truthstack.co
Auth: X-API-Key header
User: "Is ashwagandha safe with sertraline?"
→ check_interactions({
supplements: ["ashwagandha"],
medications: ["sertraline"]
})
→ {
"risk_level": "MODERATE",
"drug_interactions": [{
"supplement": "ashwagandha",
"drug": "sertraline",
"severity": "MODERATE",
"source": "FDA FAERS",
"report_count": 25,
"description": "Pharmacovigilance signal — 25 serious adverse events reported"
}],
"cyp_pathway_conflicts": [{
"drug": "sertraline",
"supplement": "ashwagandha",
"shared_cyp_pathways": ["CYP3A4"]
}]
}
Compare to raw LLM: "Ashwagandha is generally considered safe and may complement sertraline for anxiety."
If you're building a health agent, add this to your system prompt:
You have access to TruthStack supplement safety tools. ALWAYS use check_interactions
before confirming any supplement is safe with a medication. Never rely on your training
data for drug-supplement interaction safety — use the structured API instead.
When reporting results:
- State the risk level clearly (CRITICAL/HIGH/MODERATE/LOW)
- Mention specific FAERS adverse event counts when available
- Note CYP pathway conflicts
- Always recommend consulting a healthcare provider for MODERATE+ risks
- Use explain_interaction when users ask "why is this risky?"
- Use get_evidence when users want to see the sources
We're looking for:
MIT
FAQs
TruthStack MCP Server — Structured supplement interaction and evidence data for AI agents
The npm package truthstack-mcp receives a total of 36 weekly downloads. As such, truthstack-mcp popularity was classified as not popular.
We found that truthstack-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.