Skip to main content
Glama

kaggle-mcp

smithery.yaml1.36 kB
# smithery.yaml startCommand: type: stdio # Defines the configuration options users can set on Smithery.ai configSchema: type: object properties: kaggleUsername: type: string title: Kaggle Username description: Your Kaggle account username. kaggleKey: type: string title: Kaggle API Key description: Your Kaggle API key (obtain from Kaggle Account > API). format: password # Use 'password' format for sensitive fields in UI required: - kaggleUsername - kaggleKey # JavaScript function that returns the command to start the server. # 'config' parameter contains the values provided by the user based on configSchema. commandFunction: | function(config) { return { command: "python", // The command to execute args: ["src/server.py"], // Arguments for the command env: { // Pass configuration as environment variables to the server process KAGGLE_USERNAME: config.kaggleUsername, KAGGLE_KEY: config.kaggleKey } }; } # Optional build configuration (if Dockerfile is not in root or needs specific context) # build: # dockerfile: Dockerfile # Default is Dockerfile in the same dir as smithery.yaml # dockerBuildPath: . # Default is the directory containing smithery.yaml

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/arrismo/kaggle-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server