Wikipedia Recent Changes
Server Details
Live Wikipedia edit feed, page summaries, trending pages, and Wikidata search.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- guptaprakhariitr/wikipedia-recent-changes-mcp
- GitHub Stars
- 0
- Server Listing
- wikipedia-recent-changes-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 4 of 4 tools scored.
Each tool has a distinct and non-overlapping purpose: entity search, page summary, live edits feed, and trending page rankings. No ambiguity between tools.
All tools share a 'wiki_' prefix, but the naming patterns vary: 'wikidata_search' uses noun_verb? 'wiki_page_summary' is noun_noun, 'wiki_recent_changes' is adjective_noun, and 'wiki_trending' is adjective. Lack of a consistent verb_noun or noun_verb pattern.
With 4 tools, the server is well-scoped for its purpose around Wikipedia recent changes and trends. Each tool serves a clear need without bloat or insufficiency.
Covers key operations: entity search, page summary, live changes, and trending. Minor gaps like full page content retrieval or per-edit history exist, but the core use case is well-covered.
Available Tools
4 toolswikidata_searchAInspect
Search Wikidata entities by name. Returns up to 10 matches with Q-id, label, description. Use this for entity disambiguation / canonicalization.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the result limit ('up to 10 matches') and return fields (Q-id, label, description), which is helpful. However, it does not mention rate limits, authentication, or whether the operation is read-only (assumed from context, but not stated).
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 very concise: two sentences that cover what it does, what it returns, and a use case. No unnecessary words; every sentence adds value.
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 low complexity (single string parameter, no output schema, no annotations), the description is fairly complete. It states the purpose, result limit, and return fields. It could mention potential limitations (e.g., only matches by name) but overall covers the key aspects.
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 stating the query parameter is for searching 'by name,' but lacks details on matching behavior (e.g., partial matches, case sensitivity) or expected input format.
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 clearly states the tool searches Wikidata entities by name and returns specific fields (Q-id, label, description). It also mentions a use case (entity disambiguation/canonicalization), distinguishing it from siblings like wiki_page_summary which focus on page summaries.
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 provides clear context with 'Use this for entity disambiguation / canonicalization,' indicating when to use it. It does not explicitly state when not to use it, but the purpose is distinct from sibling tools (summary, recent changes, trending).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_page_summaryAInspect
Get a clean summary of a Wikipedia article: extract, thumbnail, description, last modified. Use this to verify an entity exists or pull a one-line description.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Lists outputs (extract, thumbnail, description, last modified) but does not disclose limitations, response format, or side effects. With no annotations, more detail on behavior would be beneficial.
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?
Two sentences, front-loaded with purpose, no wasted words. Efficiently conveys key information.
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?
Describes outputs and use case, but lacks details on return structure (e.g., JSON format, thumbnail URL) given no output schema. Adequate for a simple tool but not fully complete.
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 coverage is 0%, but the description implies the single parameter 'title' is a Wikipedia article title, adding meaning beyond the schema. Could specify case sensitivity or formatting.
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?
Clearly states it retrieves a clean summary of a Wikipedia article including extract, thumbnail, description, and last modified. Differentiates from siblings like wikidata_search (Wikidata queries) and wiki_trending (trending articles).
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?
Explicitly states use case: to verify an entity exists or pull a one-line description. Implicitly distinguishes from siblings, though could explicitly mention when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_recent_changesAInspect
Live feed of recent edits to English Wikipedia. Returns title, editor, timestamp, comment, size delta. Optional topic filter (substring match against title + edit comment) and exclude_bots. Useful for trend-monitoring or news-monitoring agents — every breaking news event lands in Wikipedia edits within minutes.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| topic | No | Optional substring filter on title/comment. | |
| namespace | No | Wikipedia namespace ID. 0 = main articles (default), 1 = talk, etc. | |
| exclude_bots | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It describes the tool as 'live feed' but does not mention authentication, rate limits, or whether results are cached or streaming. Adequate but not detailed.
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?
Two sentences, no filler. The first sentence states purpose and return fields. The second adds optional filtering and use case. Every sentence is informative and 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 4 parameters, no output schema, and no annotations, the description provides a solid overview and key parameter hints. It lacks details on pagination, ordering, or limitations, but is fairly complete for a simple real-time feed tool.
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 coverage is 50% (topic and namespace have descriptions). The description adds meaning for 'topic' by specifying it does substring match against title and edit comment. It also mentions 'exclude_bots' but does not elaborate beyond the schema default. Overall, it adds value beyond 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 clearly states the tool provides a 'live feed of recent edits to English Wikipedia' and lists the return fields (title, editor, timestamp, comment, size delta). This uniquely distinguishes it from sibling tools like wikidata_search, wiki_page_summary, and wiki_trending.
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 usefulness for 'trend-monitoring or news-monitoring agents' and mentions that breaking news events appear in edits quickly. It does not explicitly exclude alternatives, but the use case is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_trendingAInspect
Top 50 most-viewed English Wikipedia pages for a given date (default yesterday). Useful for 'what's the world reading about?' signal.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Optional ISO YYYY-MM-DD. Defaults to yesterday. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It mentions the default date behavior but does not address rate limits, auth requirements, or whether the operation is read-only (though implied). The lack of explicit behavioral traits is a gap but acceptable for a simple tool.
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, front-loaded with the core functionality, and contains no redundant or unnecessary words. Every sentence adds value.
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 simplicity (1 optional param, no output schema), the description covers the basic behavior. However, it does not mention the return format or structure of the results, which would be helpful for an agent without an output schema.
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 100%, so the schema already documents the one parameter. The description adds no new information about the parameter beyond what the schema provides, meeting the baseline of 3.
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 clearly states the tool returns the top 50 most-viewed English Wikipedia pages for a given date, with a specific verb (retrieve/list) and resource (trending pages). It distinguishes from siblings like wikidata_search, wiki_page_summary, and wiki_recent_changes by focusing on trending 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 provides a clear use case ('what's the world reading about?' signal) implying when to use it. However, it does not explicitly state when not to use it or provide alternatives, though the sibling tools cover other search/summary use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityDmaintenanceEnables searching and retrieving Wikipedia content across multiple languages, including article summaries, sections, coordinates, and related topics.
- Alicense-qualityBmaintenanceProvides Wikipedia page view trend data including spike detection, historical traffic, and cross-platform comparison, enabling AI to access a leading indicator of public curiosity.MIT
- Alicense-qualityCmaintenanceAn MCP server that exposes Wikipedia page view trends as clean JSON, providing normalized 0-100 trend scores, growth rates over 3M/6M/12M/5Y windows, and live most-viewed article feeds, comparable across 15 sources including Google, YouTube, and TikTok.MIT
- Alicense-qualityCmaintenanceWraps Wikimedia Feed API to provide featured articles, most-read articles, and picture of the day from Wikipedia.6MIT
Your Connectors
Sign in to create a connector for this server.