Skip to content

Commit 7418086

Browse files
authored
Update mcp_agent.secrets.yaml.example for clarity
Uncomment sections for API keys and provide guidance on environment variable usage.
1 parent bc42c95 commit 7418086

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

src/mcp_agent/data/examples/basic/mcp_basic_agent/mcp_agent.secrets.yaml.example

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,32 @@ $schema: https://raw.githubusercontent.com/lastmile-ai/mcp-agent/refs/heads/main
33
# Copy this file to mcp_agent.secrets.yaml and fill in your API keys.
44
# This file should be gitignored.
55

6-
openai:
7-
api_key: "sk-your-openai-key"
6+
# UNCOMMENT the sections to specify secrets that you need.
7+
# Alternatively, if you have env set (e.g. ANTHROPIC_API_KEY or OPENAI_API_KEY), that will be picked up as well.
8+
# OpenAI API
9+
# openai:
10+
# api_key: "sk-your-openai-key"
811

9-
anthropic:
10-
api_key: "sk-your-anthropic-key"
12+
# Anthropic API
13+
# anthropic:
14+
# api_key: "sk-your-anthropic-key"
1115

12-
# Optional: Azure OpenAI
16+
# Azure LLM inference
1317
# azure:
1418
# api_key: "..."
1519
# endpoint: "https://<your-endpoint>.openai.azure.com"
1620

17-
# Optional: Google
21+
# Google LLM inference (Vertex AI, Gemini, etc.)
1822
# google:
1923
# api_key: "..."
2024
# # vertexai: true
2125
# # project: your-gcp-project-id
2226
# # location: us-central1
2327

24-
# Optional: AWS / Bedrock
28+
# AWS / Bedrock inference
2529
# bedrock:
2630
# aws_access_key_id: "..."
2731
# aws_secret_access_key: "..."
2832
# aws_region: "us-east-1"
2933
# # aws_session_token: "..."
3034
# # profile: "default"
31-
32-

0 commit comments

Comments
 (0)