Provides tools to extract research papers via the official arXiv API, including titles, authors, years, and snippets with precise timestamped metadata.
Provides tools to extract repository metadata, READMEs, star/fork counts, and activity signals, as well as tracking release history and changelogs via the GitHub API.
Provides tools to extract npm package metadata, version history, and release cadence to monitor dependency maintenance and update intelligence.
Provides tools to extract information about recent product launches and trends by topic.
Provides tools to extract Python package metadata and version history for research and dependency tracking.
Provides tools to extract posts and monitor community sentiment from specific subreddits.
freshcontext-mcp
I asked Claude to help me find a job. It gave me a list of openings. I applied to three of them. Two didn't exist anymore. One had been closed for two years.
Claude had no idea. It presented everything with the same confidence.
That's the problem freshcontext fixes.
What it does
Every MCP server returns data. freshcontext returns data plus when it was retrieved and how confident that date is — wrapped in a FreshContext envelope:
[FRESHCONTEXT]
Source: https://github.com/owner/repo
Published: 2024-11-03
Retrieved: 2026-03-05T09:19:00Z
Confidence: high
---
... content ...
[/FRESHCONTEXT]Claude now knows the difference between something from this morning and something from two years ago. You do too.
13 tools. No API keys.
Intelligence
Tool | What it gets you |
| README, stars, forks, language, topics, last commit |
| Top stories or search results with scores and timestamps |
| Research papers — titles, authors, years, snippets |
| arXiv papers via official API — more reliable than Scholar |
| Posts and community sentiment from any subreddit |
Competitive research
Tool | What it gets you |
| YC company listings by keyword — who's funded in your space |
| Recent launches by topic |
| GitHub repos ranked by stars with activity signals |
| npm and PyPI metadata — version history, release cadence |
Market data
Tool | What it gets you |
| Live stock data — price, market cap, P/E, 52w range |
Composite
Tool | What it gets you |
| One call. YC + GitHub + HN + Reddit + Product Hunt + npm in parallel. Full timestamped picture. |
Update intelligence — unique to FreshContext
Tool | What it gets you |
| Update history from any GitHub repo, npm package, or website. Accepts a GitHub URL (uses the Releases API), an npm package name, or any website URL — auto-discovers |
Government intelligence — unique to FreshContext
Tool | What it gets you |
| US federal contract awards pulled live from USASpending.gov — the official US Treasury database, updated daily. Search by company name, keyword, or NAICS code. Returns award amounts, awarding agency, period of performance, and contract description, all timestamped. A company that just won a $10M DoD contract is actively hiring and spending — that is a buying intent signal no other MCP server surfaces. |
Quick Start
Option A — Cloud (no install)
Add to your Claude Desktop config and restart:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"freshcontext": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://freshcontext-mcp.gimmanuel73.workers.dev/mcp"]
}
}
}Restart Claude. Done.
Prefer a guided setup? Visit freshcontext-site.pages.dev — 3 steps, no terminal.
Option B — Local (full Playwright)
Requires: Node.js 18+ (nodejs.org)
git clone https://github.com/PrinceGabriel-lgtm/freshcontext-mcp
cd freshcontext-mcp
npm install
npx playwright install chromium
npm run buildAdd to Claude Desktop config:
Mac:
{
"mcpServers": {
"freshcontext": {
"command": "node",
"args": ["/Users/YOUR_USERNAME/path/to/freshcontext-mcp/dist/server.js"]
}
}
}Windows:
{
"mcpServers": {
"freshcontext": {
"command": "node",
"args": ["C:\\Users\\YOUR_USERNAME\\path\\to\\freshcontext-mcp\\dist\\server.js"]
}
}
}Troubleshooting (Mac)
"command not found: node" — Use the full path:
which node # copy this output, replace "node" in configConfig file doesn't exist — Create it:
mkdir -p ~/Library/Application\ Support/Claude
touch ~/Library/Application\ Support/Claude/claude_desktop_config.jsonUsage examples
Is anyone already building what you're building?
Use extract_landscape with topic "cashflow prediction saas"Returns who's funded, what's trending, what repos exist, what packages are moving — all timestamped.
What's the community actually saying right now?
Use extract_reddit on r/MachineLearning
Use extract_hackernews to search "mcp server 2026"Did that company actually ship recently?
Use extract_github on https://github.com/some-org/some-repoCheck Published vs Retrieved. If the gap is 18 months, Claude will tell you.
Is this dependency still actively maintained?
Use extract_changelog with url "https://github.com/org/repo"Returns the last 8 releases with exact dates. If the last release was 18 months ago, you'll know before you pin the version.
Which companies just won government contracts in AI?
Use extract_govcontracts with url "artificial intelligence"Returns the largest recent federal contract awards matching that keyword — company name, amount, agency, and award date. Pure buying intent signal.
How freshness works
Most AI tools retrieve data silently. No timestamp, no signal, no way for the agent to know how old it is.
freshcontext treats retrieval time as first-class metadata. Every adapter returns:
retrieved_at— exact ISO timestamp of the fetchcontent_date— best estimate of when the content was originally publishedfreshness_confidence—high,medium, orlowbased on signal qualityadapter— which source the data came from
When confidence is high, the date came from a structured field (API, metadata). When it's medium or low, freshcontext tells you why.
Security
Input sanitization and domain allowlists on all adapters
SSRF prevention (blocked private IP ranges)
KV-backed global rate limiting: 60 req/min per IP across all edge nodes
No credentials required — all public data sources
Roadmap
GitHub, HN, Scholar, YC, Reddit, Product Hunt, Finance, arXiv adapters
extract_landscape— 6-source composite toolCloudflare Workers deployment
KV-backed global rate limiting
Listed on official MCP Registry
extract_changelog— update cadence from any repo, package, or websiteextract_govcontracts— US federal contract intelligence via USASpending.govListed on Apify Store
FreshContext Specification v1.0 published
TTL-based caching layer
freshness_scorenumeric metric (0–100)extract_devto— developer article sentimentextract_npm_releases— package release velocity
Contributing
PRs welcome. New adapters are the highest-value contribution — see src/adapters/ for the pattern.
License
MIT