TrendKia MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TrendKia MCP Serversearch for articles about AI trends"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TrendKia MCP Server
Version 1.2.1
An MCP server that exposes TrendKia — a bilingual Hindi/English news site — to AI assistants (Claude Desktop, claude.ai custom connectors, Claude Code, Cursor, etc.).
The site publishes a clean .md version of every article, so this server serves clean
text — no HTML scraping.
Connect to the hosted server
A public, read-only instance is already running. Nothing to install:
https://mcp.trendkia.comclaude.ai (Pro and above) — Settings → Connectors → Add custom connector, paste the URL.
Claude Code —
claude mcp add --transport http trendkia https://mcp.trendkia.comClaude Desktop / Cursor — add it as a remote HTTP MCP server in the client's config.
https://trendkia.com/mcp remains live for anything already pointed at it.
No API key or auth: it serves only content that is already public on the site.
Related MCP server: urltomarkdown-mcp
Tools
Tool | Arguments | What it returns |
|
| Keyword search across the whole archive. An English query finds Hindi articles and vice versa. |
|
| The newest posts, from the RSS feed (~30 most recent). |
|
| Full clean markdown of one article, in either language. |
|
| Enumerate URLs. |
Languages
TrendKia publishes in Hindi at the site root, with an English edition under /en.
There is no /hi prefix — a bare path is the Hindi article:
https://trendkia.com/market/<slug>-<id> Hindi
https://trendkia.com/en/market/<slug>-<id> EnglishThe URL decides the language, and lang only overrides it.
get_article(url)returns the article at that URL, in the language that URL is in. A URL you pass is never silently swapped for another edition.get_article(url, lang="en")returns the other edition of the same article — the server rewrites the path, so you never edit a URL yourself.search_articlesandlist_recent_articlesdefault to Hindi, the site's own language, and take the samelangto switch.
Every result carries Language: and Alternate (…):, so the other edition is one field away
in any single response — and the alternate is a clean canonical URL, never an echo of whatever
query string you passed in.
The search index is shared, not per-locale — one full-text index over Hindi and English
headlines, summaries and tags. So lang chooses which language the results come back in, not
which index is consulted. That is why an English query matches Hindi articles.
Search vs. recent — the useful distinction
To find an article, use search_articles. It queries the site's full-text index and
reaches every published article, however old. list_recent_articles reads the RSS feed and
is limited to roughly the last 30 posts by design — it answers "what's new", nothing else.
list_sitemap_urls enumerates what exists; it is not a search tool. It defaults to
kind="articles" because the sitemap opens with ~6,900 bribe-ledger state and district
pages: before 1.3.0 the first 6,995 entries contained no article at all, so at the 1000-URL
ceiling every possible response was ledger pages and the archive looked unreachable through
it. Page through with offset.
Before 1.1.0 search_articles also read the feed, so a query for a common word returned
only a handful of same-day hits. If you are running an older copy, upgrade.
Run it yourself
Local (Claude Desktop, stdio)
pip install -r requirements.txt
python trendkia_mcp.pyAdd to claude_desktop_config.json:
{ "mcpServers": { "trendkia": { "command": "python", "args": ["/full/path/to/trendkia_mcp.py"] } } }Hosted (HTTP transport)
MCP_TRANSPORT=http PORT=8000 python trendkia_mcp.pyServes http://<host>:8000/mcp. Put it behind a TLS reverse proxy and point clients at
the public URL. Dockerfile and render.yaml are included.
Reverse-proxy gotcha: FastMCP rejects a non-localhost Host header as DNS-rebinding
protection, so a proxy forwarding Host: your-domain.com gets Invalid Host header until
that host is allowed. Set it via the environment rather than patching the code.
Config
Variable | Default | Purpose |
|
|
|
|
| HTTP port |
|
| HTTP bind address |
|
| Site to serve from |
|
| Last-resort language when neither |
|
| Hosts accepted behind a reverse proxy |
|
| Allowed browser origins |
Requirements
mcp is pinned below 2.0 on purpose: mcp 2.x renames FastMCP to MCPServer and changes
the decorator API, so an unpinned install fails at import. Moving to 2.x is a migration,
not a version bump.
This server cannot be deployed
Maintenance
Related MCP Connectors
Clean Markdown and AI-readability scoring for any URL. Built for AI agents.
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Fetch pages as markdown, search web and news, extract structured data. For AI agents.
Search indexed websites, read raw page markdown, and score AI visibility for any site.
Related MCP Servers
- AlicenseDqualityDmaintenanceEnables AI assistants to reliably fetch web content as markdown and search the web by bypassing bot detection and rendering JavaScript. Provides tools to unblock URLs and search the web with results converted to markdown format.215 npmMIT
- AlicenseAqualityDmaintenanceConverts URLs and raw HTML to clean Markdown, enabling AI assistants to read web pages for summarization, analysis, or ingestion.24 npm1MIT
- AlicenseNot gradedqualityCmaintenanceHelps AI agents search the public web and fetch content with anti-bot measures, returning clean markdown outputs suitable for citation.2Apache 2.0
- AlicenseAqualityDmaintenanceEnables AI assistants to read and analyze Medium blog posts, including member-only content with login support, and search articles by author or keyword.118 npmMIT