@mseep/puremd-mcp
Version:
Model Context Protocol (MCP) server for pure.md, the markdown delivery network for LLMs
26 lines (24 loc) • 684 B
YAML
# 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:
- puremdApiKey
properties:
puremdApiKey:
type: string
description: API key for authenticating with pure.md
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
PUREMD_API_KEY: config.puremdApiKey
}
})
exampleConfig:
puremdApiKey: YOUR_API_KEY_HERE