Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-server-v2ex

MCP.Pizza Chef: funnythingfunnylove

mcp-server-v2ex is a lightweight MCP server implemented in TypeScript that wraps the official V2EX API 2.0. It provides structured access to V2EX features such as notifications, member profiles, tokens, nodes, topics, and comments. This server enables seamless integration of V2EX community data into MCP-enabled LLM workflows, supporting token management and real-time content retrieval.

Use This MCP server To

Fetch latest V2EX notifications for user updates Delete specific notifications from V2EX Retrieve current user profile and token information Generate new API tokens for V2EX access Access details of specific V2EX nodes List topics under a specified V2EX node Get detailed content of a V2EX topic Fetch comments from a V2EX topic thread

README

Mcp-server-v2ex

Description

This mcp server simply wrap the offical Api 2.0, implement all api actions.

Feature

  • notifications 获取最新提醒
  • delete notifications 删除指定提醒
  • member profile 获取当前用户档案 即生成token的用户
  • token 查看当前的token
  • create new token 生成新token
  • nodes 获取指定节点
  • nodes topics 获取指定节点下的话题
  • topic detail 获取指定话题的内容
  • topic comments 获取指定话题下的回复

How to use

  npm install -g mcp-server-v2ex
  • 在 claude 的 config 的 json 中添加
  "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": "{替换自己的 token}",
          "NODE_TLS_REJECT_UNAUTHORIZED": "0" // 如运用了 surge 之类的 MitM
      }
     }

Change log

  • v0.1.1 / 2025.04.02
    • 新增今日热点总结 img
  • v0.1.0
    • 完成基本功能实现

Plan

  • Considering add daily hot topic simply via ask what hot topic in v2ex in claude desktop.

mcp-server-v2ex FAQ

How do I install mcp-server-v2ex?
Install via npm using 'npm install -g mcp-server-v2ex' to get the latest version.
How do I configure the server with my V2EX token?
Obtain your token from https://www.v2ex.com/settings/tokens and set it in the environment variable V2EX_API_KEY.
Can I use mcp-server-v2ex with other LLM providers?
Yes, it works with any MCP client compatible with OpenAI, Claude, Gemini, and others.
Does mcp-server-v2ex support real-time notifications?
It supports fetching the latest notifications but does not push real-time updates.
Is TLS verification required for this server?
By default yes, but you can disable TLS verification by setting NODE_TLS_REJECT_UNAUTHORIZED to 0 if using proxies like Surge.
What API actions does mcp-server-v2ex implement?
It implements notifications, token management, member profiles, nodes, topics, and comments retrieval.
How do I update mcp-server-v2ex to the latest version?
Use npm to update with 'npm update -g mcp-server-v2ex'.
Are there plans to add more features?
Yes, future plans include additional API coverage and enhanced summarization features.