Scientific Tools MCP Server
High-value scientific tools for AI agents — literature search (PubMed, arXiv, Semantic Scholar), chemical compound lookup (PubChem, ChEMBL), patent prior art search (USPTO, EPO), GPU spot prices across 4 providers, and real-time earth science data (USGS, NASA, OpenAQ). Per-call billing via API key. Keys issued instantly at https://mcp-site.com/keys/request
README
Scientific Tools MCP Server
An MCP-compatible server providing high-value scientific tools for AI agents. Earn per tool call. Zero upfront capital. Fully automated.
Tools
| Tool | Price/call | Description |
|---|---|---|
literature_search |
$0.020 | PubMed + arXiv + Semantic Scholar |
compound_lookup |
$0.010 | PubChem + ChEMBL molecular properties |
gpu_spot_prices |
$0.005 | Live GPU spot prices across 4 providers |
patent_prior_art_search |
$0.050 | USPTO + EPO patent databases |
scientific_data |
$0.003 | USGS earthquakes, NASA, OpenAQ air quality |
analytics |
$0.001 | Usage stats and revenue reporting |
Quick start
# 1. Install dependencies
pip install fastapi uvicorn stripe pydantic aiohttp
# 2. Set environment variables
cp .env.example .env
# Edit .env with your keys
# 3. Run demo (no keys needed)
python main.py
# 4. Start production server
python main.py --serve
Environment variables
# Required for billing
STRIPE_SECRET_KEY=sk_live_...
STRIPE_WEBHOOK_SECRET=whsec_...
# Stripe metered price IDs (create in Stripe dashboard)
STRIPE_PRICE_LITERATURE=price_...
STRIPE_PRICE_COMPOUND=price_...
STRIPE_PRICE_GPU=price_...
STRIPE_PRICE_PATENT=price_...
STRIPE_PRICE_SCIDATA=price_...
STRIPE_PRICE_ANALYTICS=price_...
# Optional — improves data access limits
NOAA_API_TOKEN=... # https://www.ncdc.noaa.gov/cdo-web/token
NASA_API_KEY=... # https://api.nasa.gov/
Deployment (VPS)
# On a fresh Ubuntu 22.04 VPS ($6/mo Hetzner)
# Install Python
sudo apt update && sudo apt install python3-pip python3-venv nginx certbot -y
# Clone and install
git clone https://github.com/yourname/mcp-scientific-tools
cd mcp-scientific-tools
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
# Run as service
sudo nano /etc/systemd/system/mcp-server.service
# [Unit]
# Description=MCP Scientific Tools Server
# [Service]
# WorkingDirectory=/home/ubuntu/mcp-scientific-tools
# ExecStart=/home/ubuntu/mcp-scientific-tools/venv/bin/python main.py --serve
# Restart=always
# [Install]
# WantedBy=multi-user.target
sudo systemctl enable mcp-server && sudo systemctl start mcp-server
# SSL via nginx + certbot
sudo certbot --nginx -d your-domain.com
Directory submissions (one-time, ~30 minutes)
-
mcp.so — https://mcp.so/submit Submit: server name, endpoint URL, tool descriptions
-
Glama.ai — https://glama.ai/mcp/servers/submit Submit: GitHub repo URL
-
Anthropic MCP directory — https://github.com/modelcontextprotocol/servers Open a PR adding your server to the README
-
GitHub topic — Add
mcp-servertag to your repo Automatically discoverable by agents scanning GitHub
Stripe setup
- Create a Stripe account at stripe.com
- Create a product: "Scientific Tools MCP"
- For each tool, create a metered price:
- Billing: recurring, monthly
- Metered usage: sum of usage during period
- Price per unit: tool's per-call rate
- Copy each price ID (price_...) to your .env
Agent integration example
import anthropic
client = anthropic.Anthropic()
# Add your MCP server
response = client.beta.messages.create(
model="claude-opus-4-6",
max_tokens=1024,
tools=[{
"type": "custom",
"name": "scientific_tools",
"description": "Scientific research tools",
"mcp_server": {
"url": "https://your-domain.com/mcp",
"auth": {"type": "bearer", "token": "mcp-key-..."}
}
}],
messages=[{
"role": "user",
"content": "Search for recent papers on CRISPR cancer therapy"
}]
)
Legal disclaimer and terms of service
BY USING THIS SERVICE OR ANY API KEY ISSUED BY THIS SERVICE, YOU AGREE TO THESE TERMS, INCLUDING THE DISCLAIMER THAT THE SERVICE IS PROVIDED AS IS WITHOUT WARRANTY, DATA IS SOURCED FROM THIRD-PARTY APIS AND MAY BE INACCURATE, AND OPERATOR LIABILITY IS LIMITED TO FEES PAID IN THE PRECEDING 30 DAYS. IF YOU DO NOT AGREE, DO NOT USE THIS SERVICE OR ITS API KEYS.
1. No warranties
This service is provided "as is" and "as available" without warranty of any kind, express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, or accuracy. The service retrieves data from third-party public APIs (PubMed, PubChem, USPTO, USGS, NASA, OpenAQ, and others) over which the operator has no control. That data may be incomplete, inaccurate, outdated, or unavailable at any time without notice.
2. Not professional advice
Data and outputs provided by this service do not constitute and must not be relied upon as medical, clinical, legal, patent, financial, pharmaceutical, toxicological, or safety advice. Users requiring professional advice must consult qualified licensed professionals. The operator expressly disclaims responsibility for any decisions made based on outputs from this service.
Specifically:
- Literature search results are not a substitute for systematic review by qualified researchers
- Compound property data is not a substitute for laboratory analysis by qualified chemists
- Patent search results are not a substitute for freedom-to-operate analysis by a licensed patent attorney
- Earthquake and environmental data are not a substitute for official emergency management guidance
3. Limitation of liability
To the maximum extent permitted by applicable law, the operator's aggregate liability for any claims arising from or related to this service shall not exceed the total fees paid by the claimant in the 30 days preceding the claim. The operator shall not be liable for any indirect, incidental, consequential, or punitive damages of any kind.
4. Data sources
This service retrieves data from: PubMed/NCBI, arXiv, Semantic Scholar, PubChem, ChEMBL, USPTO, EPO/Espacenet, USGS, NASA, and OpenAQ. Each source is subject to its own terms and accuracy limitations. The operator makes no representation regarding the accuracy or completeness of data from any of these sources.
5. Acceptable use
You agree not to use this service to make clinical, medical, or safety-critical decisions without independent professional verification, to circumvent rate limits or billing mechanisms, or to engage in any activity that violates applicable laws or regulations.
6. Service availability
The operator does not guarantee any specific level of uptime, availability, or response time. The service may be interrupted, modified, suspended, or discontinued at any time with or without notice.
7. Privacy
Query parameters are processed in memory solely to fulfil each request and are not stored beyond the duration of each individual request. Usage metadata (tool name, timestamp, call volume) is retained for billing and analytics. No personally identifiable information is knowingly collected or transmitted to third parties beyond what is required for payment processing (Stripe).
8. Governing law
These terms are governed by the laws of the United States and the state in which the operator is domiciled, without regard to conflict of law provisions.
Full terms of service: https://yourdomain.com/terms
Complete legal text: see DISCLAIMER.py in this repository
Revenue projection
At 5 tools × 1,000 calls/day × $0.01 avg price = $50/day = $1,500/month
Scale levers:
- More tools → more call volume
- Better tools → higher per-call price
- More agent integrations → more calls automatically
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。