
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@shelm/wikipedia-mcp-server
Advanced tools
An MCP (Model Context Protocol) server for Wikipedia API interactions.
This server provides tools for interacting with the Wikipedia API through the Model Context Protocol. It allows AI assistants to access Wikipedia content, search for articles, get historical events, and retrieve images.
The server provides the following tools:
npm install @shelm/wikipedia-mcp-server
For development:
git clone https://github.com/scotthelm/wikipedia-mcp-server.git
cd wikipedia-mcp-server
npm install
npm run build
npx @shelm/wikipedia-mcp-server
This will start the MCP server, which communicates over stdio.
You can also use the package programmatically in your own projects:
import {
WikipediaServer,
isValidOnThisDayArgs,
isValidFindPageArgs,
isValidGetPageArgs,
isValidGetImagesForPageArgs,
} from "@shelm/wikipedia-mcp-server";
// Create a new server instance
const server = new WikipediaServer();
// Run the server
server.run().catch(console.error);
// Or use the validation functions and handlers directly
if (isValidOnThisDayArgs({ date: "2023-01-01" })) {
const result = await server.handleOnThisDay({ date: "2023-01-01" });
console.log(result);
}
An example client is provided to demonstrate how to interact with the server:
node example-client.js
This will:
npm run build
npm run dev
This project can be tested manually using the example client:
node example-client.js
This will demonstrate all the available tools with sample queries.
To use this server with Claude or other MCP-compatible assistants, add it to your MCP configuration:
{
"mcpServers": {
"wikipedia": {
"command": "npx",
"args": ["@shelm/wikipedia-mcp-server"],
"env": {}
}
}
}
This would not be possible without the great work done by the folks who created the wikipedia package
MIT
FAQs
MCP server for Wikipedia API interactions
The npm package @shelm/wikipedia-mcp-server receives a total of 20 weekly downloads. As such, @shelm/wikipedia-mcp-server popularity was classified as not popular.
We found that @shelm/wikipedia-mcp-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.