prothomalo-mcp
Click on "Install 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., "@prothomalo-mcpwhat has Prothom Alo published about startups this week?"
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.
prothomalo-mcp
An MCP server that lets an AI assistant search and read Prothom Alo — Bangladesh's largest Bengali-language newspaper.
Built with FastMCP. Works in Claude Code, Claude Desktop, Cursor, or any MCP-compatible client.
Unofficial. This project is not affiliated with, endorsed by, or connected to Prothom Alo or Mediastar Ltd. It is an independent client for endpoints the site already serves publicly.
What it does
Tool | Purpose |
| Keyword search across the archive. Works in Bengali and English. |
| Newest articles, optionally filtered to one section. |
| Full article text for a single story. |
| Browse the ~356 available section slugs. |
Useful for media monitoring, brand and competitor mention tracking, or researching how a topic is being covered in Bangladeshi press.
Related MCP server: Hallucination Herald MCP Server
Install
Requires uv and Python 3.12+.
git clone https://github.com/Claudefarid/prothomalo-mcp.git
cd prothomalo-mcp
uv syncNo API key, login, or paid subscription is needed.
Connect to a client
uv run fastmcp install claude-code server.py:mcp # Claude Code
uv run fastmcp install claude-desktop server.py:mcp # Claude Desktop
uv run fastmcp install cursor server.py:mcp # CursorRestart the client afterwards. Then just ask it things like "What has Prothom Alo published about startups this week?"
Verify it works
uv run python test_server.pyHow it works
Prothom Alo runs on the Quintype CMS, which exposes a public JSON
API under /api/v1/. The site's robots.txt permits these paths — it disallows only
/api/auth/, /api/comments/get_comments_json, and /story/*/element/. No HTML scraping is
involved.
Endpoints used:
Endpoint | Used for |
| Keyword search |
| Latest articles |
| Full article body |
| Section list |
API quirks worth knowing
If you're building against this API yourself, these cost me some time:
/api/v1/advanced-searchdoes not respect recency. Queryingsection-name=bangladeshreturns articles from 2014. It's an archive search, not a news feed.section=is silently ignored. The parameter issection-name. Passingsectionreturns unfiltered results rather than an error — easy to miss./api/v1/storiesreturns genuinely current articles but has no working section filter. Solatest_news()fetches the newest 100 and filters client-side. A quiet section may therefore return fewer items than requested; the tool reports this rather than failing silently.
Please be considerate
Prothom Alo's articles are their copyrighted work. This tool is intended for personal research, monitoring, and summarization — not for republishing their content. Requests identify themselves via User-Agent. Keep your volume reasonable; don't hammer their servers.
License
MIT — see LICENSE. The license covers this code only, not any content retrieved through it.
Available Tools
4 toolslatest_newsLatest NewsA
Get the most recent Prothom Alo articles, newest first.
section is a slug such as 'bangladesh', 'business', 'sports', 'politics'.
Call list_sections to see what exists.
Note: the site's API has no server-side section filter that preserves recency, so a section request scans the newest 100 stories and filters locally. A quiet section may therefore return fewer items than requested.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| section | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden and does so well: it reveals that the API has no server-side section filter preserving recency, that section requests scan the newest 100 stories, and that quiet sections may return fewer items. It does not mention auth or rate limits, but these are not implied by the tool's simple read/list nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, leading with the core behavior, then providing needed parameter guidance and a single caveat. Every sentence adds value and there is no filler or unnecessary repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only listing tool with two optional parameters and an output schema, the description covers the core behavior, ordering, section discovery, and the key edge case of local filtering. Nothing necessary for correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It thoroughly explains `section` with example slugs and points to list_sections for valid values. `limit` is left to the schema, but its meaning is clear from the tool's purpose and default value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource ('Get the most recent Prothom Alo articles, newest first'), making the tool's function unambiguous. The ordering and scope clearly distinguish it from sibling tools like search_news and read_article.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers clear context for the section parameter by instructing the agent to 'Call list_sections to see what exists.' It also explains the local-filtering behavior for sections, though it does not explicitly contrast latest_news with search_news or read_article.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_sectionsList SectionsA
List Prothom Alo section slugs, optionally filtered by a substring.
| Name | Required | Description | Default |
|---|---|---|---|
| contains | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. 'List' implies a non-mutating operation, and the optional filter is disclosed, but no details are given about matching behavior, ordering, or whether all sections are always returned. The output schema likely covers return structure, but edge-case behavior remains undocumented.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It names the resource, the action, and the parameter behavior efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with one optional parameter and an output schema, the description covers the essential call semantics. It could be slightly richer by noting substring matching behavior, but nothing critical is missing for a competent agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only shows 'contains' as an optional string/null with no description. The tool description adds meaningful semantics by explaining it as an optional substring filter, which is exactly the missing context. More detail such as case sensitivity would be nice, but for a single optional parameter this is adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List') and resource ('Prothom Alo section slugs'), and clearly mentions the optional substring filter. This distinguishes it from the sibling news-retrieval tools, which operate on articles and search queries rather than section metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended use is clear: call this when you need section slugs, optionally narrowed by a substring. However, the description does not explicitly mention when not to use it or name the sibling alternatives, so the usage guidance is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_articleRead ArticleA
Read the full text of one Prothom Alo article.
Accepts a full URL or a bare slug like 'sports/football/cqo9kmtmlf'.
| Name | Required | Description | Default |
|---|---|---|---|
| url_or_slug | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the responsibility for disclosing safety. The verb 'Read' clearly signals a non-mutating operation, and 'full text' indicates the scope of what will be returned. It does not overpromise details like rate limits or error behavior, but for a straightforward read operation this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler: the first states the tool's primary action and object, and the second defines the accepted input formats. All information is front-loaded and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter), the presence of an output schema, and sibling names that make the alternatives obvious, the description is complete. An agent has both the purpose and the exact accepted input format needed to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema provides no description for url_or_slug, the tool description fully compensates by explaining that it accepts either a full URL or a bare slug and gives a concrete example. This is exactly the semantic content an agent needs to format the single required parameter correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Read the full text of one Prothom Alo article.' This clearly distinguishes the tool from siblings like search_news, latest_news, and list_sections: it targets one existing article rather than discovering or listing content.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states the clear use case: retrieve full text of a specific article, and the input forms (URL or slug) imply you must already have an identifier rather than needing to search. It does not explicitly list exclusions or recommend alternatives, but the context is clear enough to avoid confusion with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_newsSearch NewsA
Search Prothom Alo articles by keyword. Works in Bengali or English.
Use for tracking a topic, brand, person, or event in Bangladeshi media.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It adds useful behavior context by noting that it works in Bengali or English and that it performs a search rather than a mutation, but it does not disclose details like rate limits, result handling, or pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, with two short sentences and a purpose statement. Every sentence adds value: the first states the operation and resource, the second clarifies language support and intended use.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is largely complete for a two-parameter search tool: it explains the query, the source, language support, and intended use case. An output schema exists, so return value details are covered. It would be slightly stronger with explicit sibling differentiation or an explanation of the limit parameter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaning by explaining the query is a keyword search and supports Bengali or English, which clarifies the query parameter. However, the optional limit parameter is not addressed in the description, leaving that meaning solely to the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb and resource: 'Search Prothom Alo articles by keyword.' The use case of tracking a topic, brand, person, or event makes its purpose unmistakable and clearly distinct from siblings like latest_news or list_sections.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use the tool: for tracking a topic, brand, person, or event in Bangladeshi media. It does not mention when not to use it or name alternatives, but the use case is clear enough to guide selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v0.1.0- First observed
latest_news - First observed
list_sections - First observed
read_article - First observed
search_news
TDQS
Each tool has a clearly distinct purpose: search by keyword, fetch recent articles by section, read full text, and list available sections. There is no meaningful overlap that would cause an agent to pick the wrong tool.
Three tools follow a verb_noun pattern (search_news, read_article, list_sections), while latest_news uses an adjective_noun pattern. The naming is still readable and consistent in style, with only a minor deviation.
Four tools is well-scoped for a news-focused MCP server. Each tool covers a necessary part of the workflow—discovering sections, searching, listing recent articles, and reading full content—without unnecessary duplication.
The core read-only news workflow is covered: discover sections, search, get latest, and read full articles. There are minor gaps like date-range filtering or section-specific search, but agents can typically work around these with the provided tools.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
AI-native news publishing: manage publications, write stories, upload media, and browse feeds.
Cross-source news, finance, AI and tech search across 29 sources for agents (BBC, NYT, CNBC, HF).
- Google NewsOAuthai.b77
Search and read the latest news in chat.
Real-time news search across 500,000+ sources in 60+ languages with sentiment and entities.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with VnExpress news content through RSS feeds, advanced search with filters, and clean article text extraction for Vietnamese news consumption.25MIT
- AlicenseNot gradedqualityDmaintenanceEnables interaction with The Hallucination Herald, an autonomous AI newspaper, by providing tools to browse, search, and read articles. It also supports viewing and posting comments to facilitate AI-to-AI discourse on the platform.16MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to search news articles, get top headlines, and browse sources via the NewsAPI.org service.-
- FlicenseNot gradedqualityCmaintenanceEnables fetching latest news from VnExpress.net, including categories, search, and article content retrieval.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Claudefarid/prothomalo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server