About
Grokipedia is an encyclopedia and knowledge base service from xAI that provides articles with citations, related content, and verified information. The MCP server enables AI assistants to programmatically search, retrieve, and explore Grokipedia content. Key capabilities include: - Search articles with filters for minimum view counts and sort options by relevance or popularity - Retrieve full article content with smart truncation for lengthy pages - Extract citations and sources to verify information - Discover related pages and explore connections between topics - Extract specific sections from long articles for targeted research - Run guided research workflows for topic investigation, source discovery, and comparative analysis between subjects
Tools 7
searchSearch for articles in Grokipedia with optional filtering and sorting.
get_pageGet complete page information including metadata, content preview, and citations summary.
get_page_contentGet only the article content without citations or metadata.
get_page_citationsGet the citations list for a specific page.
get_related_pagesGet pages that are linked from the specified page.
get_page_sectionExtract a specific section from an article by header name.
get_page_sectionsGet a list of all section headers in an article.
README
[](https://fastmcp.me/MCP/Details/1349/grokipedia) [](https://fastmcp.me/MCP/Details/1349/grokipedia) [](https://fastmcp.me/MCP/Details/1349/grokipedia) [](https://fastmcp.me/MCP/Details/1349/grokipedia) [](https://fastmcp.me/MCP/Details/1349/grokipedia) [](https://fastmcp.me/MCP/Details/1349/grokipedia)
Grokipedia MCP Server
[](https://smithery.ai/server/@skymoore/grokipedia-mcp)
MCP server for searching and retrieving content from Grokipedia
The User of the MCP assumes full responsibility for interacting with Grokipedia.
Please see the Xai Terms of Service if you have any doubts.
Elon, please don't sue me. I only wanted my agents to have access to truthful information and stop referencing wikipedia all the time.
Quick Start
Add this to your MCP configuration file:
{
"mcpServers": {
"grokipedia": {
"command": "uvx",
"args": ["grokipedia-mcp"]
}
}
}
Verifying Installation
You should see the Grokipedia server available with these tools:
search - Search with filtersget_page - Get page overviewget_page_content - Get full contentget_page_citations - Get citationsget_related_pages - Get linked pagesget_page_sections - List all section headersget_page_section - Extract specific sectionsAnd these prompts:
research_topic - Research workflowfind_sources - Find citationsexplore_related - Explore connectionscompare_topics - Compare two topicsFeatures
Installation (Development)
Using uv:
cd grokipedia-mcp
uv sync
For development with MCP Inspector and CLI tools:
uv sync --dev
Usage
Run with MCP Inspector (Development)
The fastest way to test and debug (requires dev dependencies):
uv run --dev mcp dev main.py
This launches the MCP Inspector UI where you can:
Run Directly
# Using the installed entry point
uv run grokipedia-mcpOr as a Python module
uv run python -m grokipedia_mcpOr directly
uv run python main.py
Available Tools
search
Search for articles in Grokipedia with filtering and sorting options.
Parameters:
query (string, required) - Search querylimit (int, optional, default: 12) - Maximum number of resultsoffset (int, optional, default: 0) - Pagination offsetsort_by (string, optional, default: "relevance") - Sort by "relevance" or "views"min_views (int, optional) - Filter to articles with at least this many viewsReturns: List of search results with title, slug, snippet, relevance score, and view count.
Examples:
// Basic search
{"query": "machine learning", "limit": 5}// Sort by most viewed
{"query": "python", "sort_by": "views"}
// Filter popular articles only
{"query": "artificial intelligence", "min_views": 1000}
---
get_page
Get complete page information including metadata, content preview, and citations summary. Includes smart suggestion of alternatives if page not found.
Parameters:
slug (string, required) - Article identifier (from search results)max_content_length (int, optional, default: 5000) - Maximum content lengthReturns: Complete page object with metadata, truncated content, and citation summaries.
Features:
Use this when: You need an overview of a page with metadata and a content preview.
Example:
{"slug": "Machine_learning"}
---
get_page_content
Get only the article content without citations or metadata.
Parameters:
slug (string, required) - Article identifiermax_length (int, optional, default: 10000) - Maximum content lengRelated MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Math-MCP
EthanHenrickson
Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support