Skip to content

Commit c2abc29

Browse files
committed
chore: Spelling
1 parent 4dc3980 commit c2abc29

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Learn more: https://modelcontextprotocol.io/introduction
6868
OPENAI_API_KEY=your_openai_api_key
6969
```
7070
4. Run any of the sample scripts to see a simple MCP server being used via an Agent framework
71-
- Google Agent Development Toolkit (ADK)
71+
- Google Agent Development Kit (ADK)
7272
- [basic_mcp_use/adk_mcp.py](basic_mcp_use/adk_mcp.py)
7373
- LangGraph Agents
7474
- [basic_mcp_use/langgraph_mcp.py](basic_mcp_use/langgraph_mcp.py)

basic_mcp_use/langgraph_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ async def main(query: str = "Greet Andrew and give him the current time") -> Non
3636
"""
3737
async with stdio_client(server) as (read, write):
3838
async with ClientSession(read, write) as session:
39-
# Initialize the connection
39+
# Initialise the connection
4040
await session.initialize()
4141

4242
# Get tools

basic_mcp_use/oai-agent_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def main(query: str = "Greet Andrew and give him the current time") -> Non
2828
"args": ["run", "run_server.py", "stdio"],
2929
}
3030
) as server:
31-
# Initialize the agent with the server
31+
# Initialise the agent with the server
3232
agent = Agent(
3333
name="MCP agent",
3434
model="o4-mini",

0 commit comments

Comments
 (0)