- Home
- MCP servers
- Grokipedia
Grokipedia
- python
5
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"skymoore-grokipedia-mcp": {
"command": "uvx",
"args": [
"grokipedia-mcp"
]
}
}
}You can run and query the Grokipedia MCP server to search Grokipedia articles, retrieve page content, and explore related pages through a lightweight, scriptable interface. This MCP server exposes structured tools and prompts that let you perform research workflows, gather citations, and navigate topics efficiently.
How to use
You interact with the Grokipedia MCP server by starting it in the MCP environment and then calling its built-in tools from your client. Use the search tool to find articles with optional filters like minimum views or sorting by relevance or views. Retrieve page overviews with get_page, fetch full content with get_page_content, and obtain citations with get_page_citations. Explore connections with get_related_pages and inspect article structure with get_page_sections and get_page_section. For guided workflows, you can use prompts such as research_topic, find_sources, explore_related, and compare_topics to streamline your research.
How to install
Prerequisites: you should have Python installed in your environment and a way to run MCP servers via the uvx runtime. You will also need a working MCP client to communicate with the server.
{
"mcpServers": {
"grokipedia": {
"command": "uvx",
"args": ["grokipedia-mcp"]
}
}
}
Additional sections
Install and run flow: clone or obtain the Grokipedia MCP project, install dependencies if required, and start the MCP server using the command shown in the configuration snippet. You can verify installation by inspecting the available tools and prompts described in the usage section.
Available tools
search
Search Grokipedia articles with filters, sort options, and view counts.
get_page
Retrieve a complete page overview including metadata, content preview, and citations summary.
get_page_content
Fetch only the article content without citations or metadata.
get_page_citations
Return the list of sources and citations for a page.
get_related_pages
List pages that are linked or related to a given article.
get_page_sections
Provide all section headers for an article to reveal its structure.
get_page_section
Extract a specific section by header name from an article.
research_topic
Guided workflow to researching a topic using search, retrieve, and analyze steps.
find_sources
Identify authoritative sources and citations for scholarly work.
explore_related
Discover connections between topics and suggested further reading.
compare_topics
Compare two topics side-by-side with their content and citations.