We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rishabh17081/paypal-au-subscription-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- paypalClientId
- paypalClientSecret
properties:
paypalClientId:
type: string
description: Your PayPal API client ID
paypalClientSecret:
type: string
description: Your PayPal API client secret
paypalEnvironment:
type: string
description: The environment to use (SANDBOX, LIVE, or MOCKDB)
enum: [SANDBOX, LIVE, MOCKDB]
default: MOCKDB
commandFunction: |-
(config) => ({
command: "python",
args: ["entrypoint.py"],
env: {
PAYPAL_CLIENT_ID: config.paypalClientId,
PAYPAL_CLIENT_SECRET: config.paypalClientSecret,
PAYPAL_ENVIRONMENT: config.paypalEnvironment || "MOCKDB"
}
})
build:
dockerfile: Dockerfile