W
Wikidata
Query Wikidata entities via SPARQL.
·No reviews yet
Share:
About
Auto-generated
Wikidata is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Wikidata.
- What is the Wikidata MCP?
- The Wikidata MCP allows you to query Wikidata entities using SPARQL. It acts as a bridge between your client and the Wikidata knowledge base, enabling programmatic access to its vast dataset.
- How do I install the Wikidata MCP in a client like Claude Desktop?
- Installation procedures depend on the specific MCP client. Typically, you would add the repository URL (https://github.com/zzaebok/mcp-wikidata) in the client's MCP configuration settings. Refer to your client's documentation for detailed steps.
- Does the Wikidata MCP require an API key or other credentials?
- No, the Wikidata MCP uses 'none' as its authentication type. You do not need an API key, OAuth, or any other credentials to use this MCP.
- What are the primary capabilities of the Wikidata MCP?
- This MCP's core capability is to run SPARQL queries against Wikidata. This allows users to retrieve structured data about entities, properties, and relationships within the Wikidata knowledge graph.
- Is there a cost associated with using the Wikidata MCP?
- The MCP itself is open-source and free to use. Access to Wikidata is also free. However, any costs associated with your chosen MCP client or internet service provider are separate.
- Are there any known limitations or prerequisites for using this MCP?
- A key prerequisite is familiarity with SPARQL query language to effectively retrieve data from Wikidata. The MCP itself does not provide an easy query builder, so users must construct their own SPARQL queries.
Install Wikidata
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"wikidata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wikidata"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"wikidata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wikidata"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"wikidata": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wikidata"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.