forked from campfirein/cipher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
38 lines (37 loc) · 1.1 KB
/
smithery.yaml
File metadata and controls
38 lines (37 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Smithery configuration file: https://smithery.ai/docs/build/project-config
build:
dockerfile: Dockerfile
dockerBuildPath: .
runtime: container
startCommand:
type: http
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- llmApiKey
- embeddingApiKey
properties:
llmModel:
type: string
default: gpt-4o-mini
description: LLM model name
llmApiKey:
type: string
description: API key for the LLM provider
llmProvider:
type: string
default: openai
description: LLM provider to use (openai, anthropic, gemini, etc.)
embeddingModel:
type: string
default: text-embedding-3-small
description: Embedding model name
embeddingApiKey:
type: string
description: API key for embedding provider
embeddingProvider:
type: string
default: openai
description: Embedding provider (openai, gemini, ollama, etc.)
description: Configuration for Cipher MCP server - memory-powered AI agent framework