Overview
MCP API Server is an enterprise-level microservice API server that provides core functionalities for user management and financial details, supporting MCP protocol extensions.
To use MCP API Server, clone the repository, install the dependencies, build the project, and start the server in development mode using Node.js.
- User information management (department/status/pagination queries) - Financial detail records (account type/amount description/time range queries) - Integration of MCP protocol (support for tool extensions and resource access) - Strong TypeScript type support
- Managing user information in a corporate environment.
- Tracking financial transactions and generating reports.
- Extending functionalities through MCP protocol for custom tools.
Add to your AI client
Use these steps to connect MCP API Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-qingtianyu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-qingtianyu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-qingtianyu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-qingtianyu": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-qingtianyu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-qingtianyu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-qingtianyu"
]
}
}
}FAQ
What are the prerequisites to run MCP API Server?
Node.js 18+, npm 9+, and TypeScript 5.0+ are required.
How can I contribute to the MCP API Server?
You can fork the repository, create a feature branch, make your changes, and submit a pull request.