search_posts
Find QAnon posts containing specific keywords or phrases for research or analysis. Specify query and limit results to streamline your investigation. Powered by the qanon-mcp-server.
Instructions
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)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_postsArguments",
"type": "object"
}