https://github.com/jkingsman/qanon-mcp-server
Enables search, exploration, and analysis of all QAnon posts for sociological study.
Tools
get_post_by_id_tool
Retrieve a specific post by its ID. Args: post_id: The ID of the post to retrieve
search_posts
Search for posts/drops containing a specific keyword or phrase. Args: query: The keyword or phrase to search for limit: Maximum number of results to return (default: 10)
get_posts_by_date
Get posts/drops within a specific date range. Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format (defaults to start_date if not provided) limit: Maximum number of results to return (default: 10)
get_posts_by_author_id
Get posts/drops by a specific author ID. Args: author_id: The author ID to search for limit: Maximum number of results to return (default: 10)
analyze_post
Get detailed analysis of a specific post/drop including references and context. Args: post_id: The ID of the post to analyze
get_timeline_summary
Get a timeline summary of posts/drops, optionally within a date range. Args: start_date: Optional start date in YYYY-MM-DD format end_date: Optional end date in YYYY-MM-DD format
word_cloud_by_post_ids
Generate a word cloud analysis showing the most common words used in posts within a specified ID range. Args: start_id: Starting post ID end_id: Ending post ID min_word_length: Minimum length of words to include (default: 3) max_words: Maximum number of words to return (default: 100)
word_cloud_by_date_range
Generate a word cloud analysis showing the most common words used in posts within a specified date range. Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format min_word_length: Minimum length of words to include (default: 3) max_words: Maximum number of words to return (default: 100)
README
QAnon is a dangerous cult. This archive is for research purposes only, and I do not endorse any material in this repo.
Q-Anon Posts/Drops MCP Server
An MCP (Model Context Protocol) server that provides access to a dataset of Q-Anon posts for anthropological/sociological research. This server allows AI assistants like Claude to search, filter, and analyze the Q-Anon drops.
Posts are drawn from https://github.com/jkingsman/JSON-QAnon. You can learn more about how the source data was composed there, as well as find alternate formats, schemas, etc.
Warning: This tool was entirely vibe coded. Use at your own risk.
Prerequisites
- Python 3.10 or higher
uvpackage manager- Claude Desktop (for Claude integration)
Installation
This tool is compatible with uvx and doesn't need to be cloned/installed.
Installing via Smithery
To install qanon-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @jkingsman/qanon-mcp-server --client claude
Manual
- Clone or download this repository to your local machine
- Install the required packages using
uv:
uv pip install -e .
Usage
You can run the server directly with uvx:
uvx qanon_mcp
Claude Desktop Integration
To use this MCP server with Claude Desktop:
- Make sure you have Claude Desktop installed
- Open the Claude menu and select "Settings..."
- Click on "Developer" in the left-hand bar and then "Edit Config"
- Add the following configuration to the
claude_desktop_config.jsonfile:
{
"mcpServers": {
"qanon_mcp": {
"command": "uvx",
"args": [
"qanon_mcp"
]
}
}
}
or, if you don't have uvx installed:
{
"mcpServers": {
"qanon_mcp": {
"command": "uv",
"args": [
"tool",
"run",
"qanon_mcp"
]
}
}
}
- Save the file and restart Claude Desktop
- Start a new conversation in Claude Desktop
- You should see a hammer icon in the input box, indicating that tools are available
Features
Resources
qanon://posts/count- Get the total number of postsqanon://posts/{post_id}- Access a specific post by IDqanon://posts/raw/{post_id}- Get the raw JSON data for a specific postqanon://authors- List all unique authorsqanon://stats- Get dataset statistics
Tools
- get_post_by_id_tool - Retrieve a specific post by its ID
- search_posts - Find posts containing specific keywords or phrases
- get_posts_by_date - Retrieve posts from a specific date range
- get_posts_by_author_id - Find posts by a specific author ID
- analyze_post - Get detailed analysis of a specific post including references and context
- get_timeline_summary - Generate a chronological timeline, optionally within a date range
- word_cloud_by_post_ids - Generate a word frequency analysis for posts within a specified ID range
- word_cloud_by_date_range - Generate a word frequency analysis for posts within a specified date range
Example Queries for Claude
Once the MCP server is connected to Claude Desktop, you can ask questions like:
- "How many Q-Anon posts are in the dataset?"
- "Search for posts that mention 'storm'"
- "Show me posts from October 2020"
- "Analyze post #3725"
- "Create a timeline of Q-Anon posts from 2018"
- "Generate a word cloud for Q-Anon posts between January and March 2019"
- "Get the raw data for post #4500"
- "What are the most common words used in posts #1000-2000?"
Troubleshooting
- If Claude Desktop doesn't show the hammer icon, check your configuration and restart Claude Desktop
- Ensure the
posts.jsonfile is in the same directory as the script - Check the output in the terminal for any error messages
- Make sure you're using the absolute path to the script in your Claude Desktop configuration
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.