GDELT Global Events
Server Details
Geopolitical event detection, tone timeseries, actor trends from GDELT 2.0.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- guptaprakhariitr/gdelt-events-mcp
- GitHub Stars
- 1
- Server Listing
- gdelt-events-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 3.1/5 across 3 of 3 tools scored.
Each tool targets a distinct function: event search, tone timeseries, and trending actors. There is no overlap in purpose.
All tools follow the pattern 'gdelt_<noun>_<plural_noun>' with descriptive names using underscores. Naming is fully consistent.
Three tools are appropriate for a focused global events MCP server, covering core capabilities without bloat.
The tools cover search, tone analysis, and actor trends. Missing date-range filtering for search and detailed event lookup are minor gaps for a basic events server.
Available Tools
3 toolsgdelt_search_eventsBInspect
Search global news for events matching a query. Optionally filter by source country (ISO 2-letter) or domain. Returns recent articles with title, URL, source, language, country, tone.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | GDELT search query, supports operators like quotes and OR. | |
| domain | No | Filter to one publishing domain. | |
| country | No | Source-country filter (ISO 2-letter, e.g. 'IN', 'US'). | |
| timespan | No | e.g. '1d', '7d', '1m'. Default '1d'. | 1d |
| max_records | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It states it returns recent articles with specific fields, but lacks details about ordering, pagination, rate limits, or how recency is defined. This leaves important behavioral aspects undisclosed.
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 concise, consisting of two sentences. The first sentence states the primary purpose, and the second lists optional filters and return fields. Every sentence contributes useful information without redundancy.
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 tool with 5 parameters and no output schema, the description covers the core functionality: what it searches, optional filters, and the return fields. It lacks details on result ordering and error handling, but the provided information is sufficient for basic usage.
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 high (80%), so the baseline is 3. The description reiterates the optional country and domain filters but does not add significant meaning beyond the schema. It does not clarify the query operators or timespan format beyond what the schema already provides.
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 global news events with a query and optional filters. It is specific about the resource and verb. However, it does not explicitly differentiate from sibling tools (tone timeseries and trending actors), which slightly reduces clarity.
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 implies usage context by mentioning optional filters and return fields, but it provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gdelt_tone_timeseriesCInspect
Sentiment-tone timeseries for a query. Returns one row per time step (hourly or daily) with the average tone (-10 most negative, +10 most positive) and article volume.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| country | No | ||
| timespan | No | 7d | |
| granularity | No | day |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses tone range and output granularity, but omits potential side effects, authentication needs, or error handling. For a read-only analytics tool, it is 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?
Single sentence, front-loaded with purpose, and no unnecessary words. It efficiently conveys the core idea.
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 and no output schema, the description leaves gaps: no description of country, timespan, or query format. Output is partially described but not complete (e.g., pagination, date range).
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%, so description must compensate. It only clarifies granularity ('hourly or daily') and implies query usage. Does not explain country, timespan format, or query syntax.
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 it returns a sentiment-tone timeseries for a query, with average tone and volume per time step. It implicitly distinguishes from siblings by specifying aggregated temporal output, but lacks explicit comparison.
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?
No guidance on when to use this tool vs. siblings (gdelt_search_events, gdelt_trending_actors). The description does not mention use cases or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gdelt_trending_actorsBInspect
Top mentioned named entities (people, organizations, places) in news for a country in the last N hours. Returns name + mentions count.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| window | No | 1d | |
| country | Yes | Source-country ISO 2-letter. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that returns are named entities with counts, but lacks details on ordering, frequency, or any constraints. Minimal behavioral insight.
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?
Single sentence, very concise. However, it omits important information that could be conveyed without much more text. Balance between conciseness and completeness is reasonable but not optimal.
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 no output schema, no annotations, and low parameter coverage, description is insufficient. It does not explain return format, ordering, or provide guidance on window parameter usage. Incomplete for effective use.
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 33% (only country has description). Description adds no additional meaning for 'limit' or 'window'; window format is unspecified. Does not compensate for low coverage.
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?
Description clearly states the tool returns top mentioned named entities (people, organizations, places) for a country and in the last N hours, with name and mention count. It effectively differentiates from siblings gdelt_search_events and gdelt_tone_timeseries.
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?
Description implies usage for retrieving trending entities, but does not explicitly state when to use this tool versus siblings. No mention of when not to use or context for choosing between tools.
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
- Alicense-qualityAmaintenanceSearch and analyze global news coverage and US television transcripts via the GDELT Project's real-time APIs via MCP.Last updated3702Apache 2.0
- Alicense-qualityCmaintenanceEnables querying the GDELT database for global events, language, and tone data through natural language.Last updated21MIT
- AlicenseAqualityDmaintenanceProvides access to the GDELT DOC 2.0 API for searching global news articles and images across 65 languages with customizable timespans and query options.Last updated2272MIT
- Alicense-qualityBmaintenanceA remote, read-only MCP server for global media intelligence using GDELT DOC 2.0 API, enabling search and analysis of multilingual news coverage, tone, and attention trends.Last updatedMIT
Your Connectors
Sign in to create a connector for this server.