smithery.yaml•969 B
startCommand:
type: stdio
configSchema:
type: object
properties:
wordpressUrl:
type: string
title: "WordPress URL"
description: "Your WordPress site URL (e.g., https://yourdomain.com)"
username:
type: string
title: "WordPress Username"
description: "Your WordPress username"
applicationPassword:
type: string
title: "Application Password"
description: "WordPress application password (not regular password)"
required: ["wordpressUrl", "username", "applicationPassword"]
exampleConfig:
wordpressUrl: "https://example.com"
username: "admin"
applicationPassword: "xxxx xxxx xxxx xxxx xxxx xxxx"
commandFunction: |
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
WORDPRESS_URL: config.wordpressUrl,
USERNAME: config.username,
APPLICATION_PASSWORD: config.applicationPassword
}
})