You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add LLM adapters to documentation navigation
- Add link in docs/index.md Getting Started section
- Add entry in mkdocs.yml navigation
- Add reference in README.md Advanced Usage section
- Register example script in pyproject.toml
Copy file name to clipboardExpand all lines: README.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2487,6 +2487,40 @@ if __name__ == "__main__":
2487
2487
asyncio.run(main())
2488
2488
```
2489
2489
2490
+
### Converting MCP Tools for LLM Providers
2491
+
2492
+
When integrating MCP tools with LLM providers (like Gemini, GPT-4, or Claude), you need to convert MCP tool schemas to the provider's format. The SDK makes this easy with comprehensive documentation and examples.
2493
+
2494
+
See the [LLM Provider Adapters guide](https://modelcontextprotocol.github.io/python-sdk/llm-adapters/) for:
2495
+
2496
+
- Complete adapter implementations for Gemini, OpenAI, and Anthropic Claude
0 commit comments