Skip to content

Commit

Permalink
Add Smithery configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
calclavia committed Jan 30, 2025
1 parent 16a37fe commit 4709cf6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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:
- indexName
- apiKey
properties:
indexName:
type: string
description: The name of the Pinecone index.
apiKey:
type: string
description: The API key for accessing Pinecone.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
config => ({command: 'uv', args: ['run', 'mcp-pinecone', '--index-name', config.indexName, '--api-key', config.apiKey]})

0 comments on commit 4709cf6

Please sign in to comment.