- Home
- MCP servers
- Fund
Fund
- shell
0
GitHub Stars
shell
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"zhenzp-fund-mcp-server": {
"command": "npx",
"args": [
"-y",
"fund-mcp-server"
],
"env": {
"PORT": "3000",
"NODE_ENV": "production",
"MCP_TRANSPORT": "http",
"FUND_KB_API_URL": "YOUR_KB_API_URL"
}
}
}
}You can run Fund MCP Server to query and retrieve fund knowledge from an integrated knowledge base. It supports multiple delivery modes, including the standard MCP protocol, HTTP REST, and Server-Sent Events, so you can choose the integration method that fits your environment and tooling.
How to use
Connect your MCP client to Fund MCP Server using the local stdio configuration or the HTTP/SSE endpoints when available. You can perform knowledge queries by sending requests through your MCP client, and you can switch between MCP modes, REST API calls, or SSE streams depending on your integration needs. The server exposes health checks to monitor availability and provides tools for querying基金知识 to retrieve relevant information quickly.
How to install
Prerequisites: ensure Node.js is installed on your system. You also need npm or npx to run the MCP server commands.
Step-by-step install and run flow:
# Install dependencies
npm install
# Build the project (if applicable)
npm run build
# Start via the standard MCP command (stdio mode)
npm start
# Or start the HTTP REST API mode
npm run start:http
# Or start the SSE mode
npm run start:sse
Additional configuration and notes
Environment variables control how Fund MCP Server connects to the基金知识库 and how it runs. You can configure these in a llm-config.env file or by exporting them in your shell.
Common environment variables include the knowledge base API URL, the service port, and the MCP transport mode.
Available tools
基金知识查询
Query基金知识库 to retrieve fund-related information by keywords or topics.
健康检查
Expose health endpoints to verify the server status and readiness.
多协议支持
Provide support for MCP standard protocol, HTTP REST API, and SSE streaming.