We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/buuzzy/tushare_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
## 配置文件
version: 1
build:
dockerfile: Dockerfile
context: .
startCommand:
type: stdio
configSchema:
type: object
properties:
tushare_token:
type: string
description: "Tushare API token"
required: ["tushare_token"]
commandFunction: |
function getCommand(config) {
return {
command: "python",
args: ["server.py"],
env: {
"TUSHARE_TOKEN": config.tushare_token
}
};
}