Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-v2ex": {
"args": [
"-y",
"mcp-server-v2ex"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This mcp server simply wrap the offical Api 2.0, implement all api actions.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-server-v2ex' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-server-v2ex against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server V2ex and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-server-v2ex is an MCP server that wraps the V2EX API 2.0 for MCP-compatible agents and developer tools. It exposes structured operations for notifications, token management, member profile lookup, node browsing, topic retrieval, comment retrieval, and daily hot-topic summaries.
The project is designed as a reusable integration layer for general-purpose agents rather than a client-specific plugin, so it can be connected to Claude Desktop, Codex, and other tools that support the Model Context Protocol.
For Chinese documentation, see README.zh-CN.md.
notifications: Fetch the latest notificationsdelete_notifications: Delete selected notificationsmember_profile: Get the profile of the user associated with the API tokentoken: Inspect the current API tokencreate_token: Create a new API tokennodes: Get node informationnode_topics: List topics under a specific nodetopic_detail: Get the content of a topictopic_comments: Get replies for a topicdaily_summary: Generate a summary of recent hot topicsInstall the package from npm:
npm install -g mcp-server-v2ex
First, create or retrieve a V2EX API token from V2EX token settings.
Example MCP client configuration:
{
"v2ex": {
"command": "%APP_DATA%\\Local\\nvm\\v22.14.0\\node.exe",
"args": [
"%APP_DATA%\\Local\\nvm\\v22.14.0\\node_modules\\mcp-server-v2ex\\dist\\index.js"
],
"env": {
"V2EX_API_KEY": "your-token-here",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}
}
}
NODE_TLS_REJECT_UNAUTHORIZED=0 is only useful in special local networking setups, such as MITM proxy tooling. Do not enable it unless you understand the security tradeoff.
v0.1.1 / 2025-04-02

v0.1.0