GDELT MCP Server
Provides access to the GDELT DOC 2.0 API for searching global news articles and images across 65 languages with customizable timespans and query options.
README
GDELT MCP Server
A Model Context Protocol (MCP) server that provides access to the GDELT DOC 2.0 API for searching global news articles and images.
Features
- Search Articles: Search across 65 languages of global news coverage (3 months rolling window)
- Search Images: Query the Visual Knowledge Graph (VGKG) for news imagery
- Custom Defaults: Optimized defaults (ArtList mode, JSON format, 50 records, newest first, 1 month timespan)
- Boolean Queries: Support for OR, AND operators and exact phrase matching
- Flexible Timespan: Search from 1 hour to 3 months of coverage
Installation
npm install
npm run build
Configuration
The server can be configured using environment variables. Create a .env file:
cp .env.example .env
Available options:
GDELT_API_TIMEOUT: API request timeout in milliseconds (default: 30000)GDELT_API_BASE_URL: GDELT API base URL (default: https://api.gdeltproject.org/api/v2/doc/doc)GDELT_DEFAULT_MAX_RECORDS: Default maximum records to return (default: 50)GDELT_DEFAULT_TIMESPAN: Default time period for searches (default: 1month)GDELT_USER_AGENT: User agent string (default: GDELT-MCP-Server/1.0)LOG_LEVEL: Logging level - debug, info, warn, error (default: info)
Usage
This MCP server is designed to be used with MCP-compatible clients. Add it to your MCP client configuration:
{
"mcpServers": {
"gdelt": {
"command": "node",
"args": ["/path/to/gdelt-mcp-server/dist/index.js"]
}
}
}
Available Tools
search_articles
Search GDELT's global news database for articles.
Parameters:
query(required): Search query with support for:- Exact phrases:
"climate change" - OR operator:
climate OR environment - AND operator:
climate AND policy
- Exact phrases:
maxRecords(optional): Number of results (1-250, default: 50)timespan(optional): Time period like "1month", "7d", "24h" (default: "1month")sort(optional): Sort order - DateDesc, DateAsc, ToneAsc, ToneDesc, HybridRelstartDateTime(optional): Start date in YYYYMMDDHHMMSS formatendDateTime(optional): End date in YYYYMMDDHHMMSS format
Example:
{
"query": "\"climate change\" OR \"global warming\"",
"maxRecords": 25,
"timespan": "7d"
}
search_images
Search GDELT's Visual Knowledge Graph for news images.
Parameters:
query(required): Search term (e.g., "fire", "protest", "flood")maxRecords(optional): Number of images (1-250, default: 50)timespan(optional): Time period (default: "1month")imageType(optional):imagetag: Search by visual content (what the AI sees in the image)imagewebtag: Search by caption/context textimageocrmeta: Search by OCR text and metadata
Example:
{
"query": "wildfire",
"maxRecords": 30,
"imageType": "imagetag",
"timespan": "7d"
}
API Details
This server uses the GDELT DOC 2.0 API which provides:
- Rolling 3-month window of coverage (back to January 2017)
- 65 languages with English search terms
- Deep learning-powered image analysis
- Real-time and historical news data
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.