Skip to content

Commit 479ed3d

Browse files
committed
chore: typos in example
1 parent 8c5954b commit 479ed3d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ Note: For demonstration, we will print a different message when access is grante
165165
In real use cases, you would use the token to make requests to downstream APIs.
166166

167167
```python
168+
import os
168169
from mcp.server.fastmcp import FastMCP, Context
169170

170171
from keycardai.mcp.server.auth import AuthProvider, AccessContext, BasicAuth
@@ -175,7 +176,7 @@ zone_id = "90zqtq5lvtobrmyl3b0i0k2z1q"
175176
access = AuthProvider(
176177
zone_id = zone_id,
177178
mcp_server_name="Hello World Mcp",
178-
auth=BasicAuth(os.getenv("KEYCARD_CLIENT_ID"), os.getenv("KEYCARD_CLIENT_SECRET")))
179+
auth=BasicAuth(os.getenv("KEYCARD_CLIENT_ID"), os.getenv("KEYCARD_CLIENT_SECRET"))
179180
)
180181

181182
mcp = FastMCP("Minimal MCP")

0 commit comments

Comments
 (0)