Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"nowcoder-mcp-server": {
"args": [
"-jar",
"-Dfile.encoding=UTF-8",
"<你的jar包地址>/nowcoder-mcp-server-1.0.0.jar",
"--spring.main.web-application-type=none",
"--spring.ai.mcp.server.stdio=true",
"--logging.pattern.console="
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
NowCoder MCP Server 是一个基于 Spring Boot 的后端服务,集成了 Spring AI 组件,支持面经搜索功能
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A MCP server that integrates the Semantic Scholar API and the arXiv API so AI assistants (e.g. Claude Code, Cursor) can search and fetch academic paper metadata.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for Nowcoder Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
NowCoder MCP Server 是一个基于 Spring Boot 的后端服务,集成了 Spring AI 组件,支持面经搜索功能
面经搜索 faceWarpSearch
git clone https://github.com/CalmChih/nowcoder-mcp-server.git
cd nowcoder-mcp-server
mvn clean package
src/main/resources/application.ymlstdio模式:
{
"mcpServers": {
"nowcoder-mcp-server": {
"command": "java",
"args": [
"-jar",
"-Dfile.encoding=UTF-8",
"<你的jar包地址>/nowcoder-mcp-server-1.0.0.jar",
"--spring.main.web-application-type=none",
"--spring.ai.mcp.server.stdio=true",
"--logging.pattern.console="
]
}
}
}
或者
{
"mcpServers": {
"nowcoder-mcp-server": {
"command": "java",
"args": [
"-jar",
"D:/Downloads/nowcoder-mcp-server-1.0.0.jar",
"--spring.main.web-application-type=none",
"--spring.ai.mcp.server.stdio=true",
"--logging.pattern.console="
],
"env": {
"JAVA_TOOL_OPTIONS": "-Dfile.encoding=UTF-8"
}
}
}
}
sse模式:
{
"mcpServers": {
"nowcoder-mcp-server": {
"type": "sse",
"url": "http://<你部署的地址>/sse"
}
}
}
欢迎提交 issue 或 PR 以改进本项目。