npm ai-daily-insights-mcpstdioupdated 2mo ago
A Model Context Protocol server for AI Daily Insights — a daily AI briefing built for both humans and agents.
What can you do with ai daily insights mcp?
ai-daily-insights-mcp
A Model Context Protocol server for AI Daily Insights — a daily AI briefing built for both humans and agents.
It lets any MCP-capable assistant (Claude Desktop, Claude Code, Cursor, …) list, read and search the daily AI news, fully structured — no HTML scraping.
Tools
| Tool | What it does |
|---|---|
get_latest() |
The newest issue with all its news items in one call. |
list_latest(limit=5) |
List recent issues: date, title, summary, tags, URLs. |
get_article(date) |
Fetch one issue (YYYY-MM-DD), parsed into news items {index, title, signal, body}. |
get_range(from, to, limit=14) |
Every issue in a date range (e.g. the past week), fetched in parallel. |
list_by_tag(tag, limit=10) |
Issues carrying a given tag (company/topic), matched case-insensitively. |
search(query, tag, limit=10) |
Full-text + tag search across all news items, in one server-side call. |
Data comes from the public JSON endpoints (/index.json, /{date}.json, /search) — the server is stateless and needs no API key. Responses are cached in-memory briefly (default 5 min, override with AI_DAILY_CACHE_TTL_MS) to avoid hammering the site on repeated calls.
Use it
Claude Code
claude mcp add ai-daily-insights -- npx -y ai-daily-insights-mcp
Claude Desktop / Cursor (config file)
{
"mcpServers": {
"ai-daily-insights": {
"command": "npx",
"args": ["-y", "ai-daily-insights-mcp"]
}
}
}
Then ask: "用 ai-daily-insights 列出最近 5 天的 AI 资讯,挑 SpaceX 相关的讲讲。"
Config
| Env var | Default | Purpose |
|---|---|---|
AI_DAILY_BASE_URL |
https://www.aidailyinsights.cn |
Override the site origin (e.g. a preview deploy). |
AI_DAILY_CACHE_TTL_MS |
300000 |
In-memory cache TTL for fetched JSON, in milliseconds. |
Develop
npm install
npm run inspect # opens the MCP Inspector
License
MIT
Install
Add ai daily insights mcp to your client. Pick the one you use.
claude mcp add ai-daily-insights-mcp -- npx -y ai-daily-insights-mcpcodex mcp add ai-daily-insights-mcp -- npx -y ai-daily-insights-mcpamp mcp add ai-daily-insights-mcp -- npx -y ai-daily-insights-mcp{
"mcpServers": {
"ai-daily-insights-mcp": {
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ai-daily-insights-mcp": {
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ai-daily-insights-mcp","command":"npx","args":["-y","ai-daily-insights-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ai-daily-insights-mcp": {
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ai-daily-insights-mcp": {
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ai-daily-insights-mcp": {
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ai-daily-insights-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ai-daily-insights-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"ai-daily-insights-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y ai-daily-insights-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 60 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.4.2Latest | Jul 3, 2026 |