客户MCP
使用此后端API
https://github.com/burrsutter/fantaco-customer-main
局部测试
cd customer-mcpexport CUSTOMER_API_BASE_URL="where-your-customer-API-is"python customer-api-mcp-server.pymcp-inspector客户MCP Kubernetes/OpenShift部署
首先构建容器映像
brew install podman
podman machine start
podman login quay.iopodman build --arch amd64 --os linux -t quay.io/burrsutter/mcp-server-customer:1.0.0 .podman push quay.io/burrsutter/mcp-server-customer:1.0.0测试容器图像
podman run \
-p 9001:9001 \
quay.io/burrsutter/mcp-server-customer:1.0.0部署到Kubernetes/OpenShift
kubectl apply -f customer-mcp-kubernetes/export MCP_CUST_URL=https://$(oc get routes -l app=mcp-customer -o jsonpath="{range .items[*]}{.status.ingress[0].host}{end}")/mcp
echo $MCP_CUST_URL使用 mcp-inspector 测试此OpenShift托管的MCP服务器
金融MCP
cd finance-mcpexport FINANCE_API_BASE_URL="where-your-finance-API-is"python finance-api-mcp-server.pymcp-inspector财务MCP Kubernetes/OpenShift部署
首先构建容器映像
brew install podman
podman machine start
podman login quay.iopodman build --arch amd64 --os linux -t quay.io/burrsutter/mcp-server-finance:1.0.0 .podman push quay.io/burrsutter/mcp-server-finance:1.0.0测试容器图像
podman run \
-p 9002:9002 \
quay.io/burrsutter/mcp-server-finance:1.0.0部署到Kubernetes/OpenShift
kubectl apply -f finance-mcp-kubernetes/export MCP_FIN_URL=https://$(oc get routes -l app=mcp-finance -o jsonpath="{range .items[*]}{.status.ingress[0].host}{end}")/mcp
echo $MCP_FIN_URL使用 mcp-inspector 测试此OpenShift托管的MCP服务器
