QAnon帖子分析服务器
可用工具 (8 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
get_post_by_id_tool 1 个参数 需填 1 项
必填参数:post_id
search_posts 2 个参数 需填 1 项
必填参数:query
get_posts_by_date 3 个参数 需填 1 项
必填参数:start_date
get_posts_by_author_id 2 个参数 需填 1 项
必填参数:author_id
analyze_post 1 个参数 需填 1 项
必填参数:post_id
get_timeline_summary 2 个参数
该工具无需必填参数,直接调用即可
word_cloud_by_post_ids 4 个参数 需填 2 项
必填参数:start_id、end_id
word_cloud_by_date_range 4 个参数 需填 2 项
必填参数:start_date、end_date
服务介绍
QAnon帖子分析服务器 qanon_mcp
一个提供QAnon帖子数据集访问的MCP服务器,用于人类学和社会学研究,支持搜索、过滤和分析功能。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| 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) |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419061950467
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419061950467
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"QAnon帖子分析服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419061950467/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"QAnon帖子分析服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419061950467/mcp"
}
}
}
STDIO
{
"mcpServers": {
"QAnon帖子分析服务器": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419061950467",
},
"transport": "stdio"
}
}
}