Skip to content

Commit f960bab

Browse files
committed
docs: add MCP notes to SDK documentation for clarity on integration with AI assistants
1 parent 593a548 commit f960bab

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

docs/SDKS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,8 @@ const client = new FaxbotClient('http://localhost:8080', 'YOUR_API_KEY');
5757

5858
## Compatibility
5959
- The SDKs work regardless of backend (Phaxio cloud or SIP/Asterisk) because Faxbot abstracts the difference.
60+
61+
## MCP vs SDK
62+
- The SDKs do not include MCP (Model Context Protocol) logic. They are simple HTTP clients for developers.
63+
- MCP integration is a separate component (stdio/HTTP servers) for AI assistants.
64+
- See the guide: docs/MCP_INTEGRATION.md for setup, transports, and examples.

sdks/node/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ run().catch(console.error);
4040
## Publishing (maintainers)
4141
- Configure GitHub secret `NPM_TOKEN`.
4242
- Create a GitHub Release to trigger publish via CI.
43+
44+
## MCP Note
45+
- MCP (Model Context Protocol) is not part of this SDK. It is a separate integration layer for AI assistants.
46+
- Refer to `docs/MCP_INTEGRATION.md` in the repository for MCP setup and usage.

sdks/python/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ print("Status:", status["status"])
3636
## Publishing (maintainers)
3737
- Configure GitHub secret `PYPI_API_TOKEN`.
3838
- Create a GitHub Release to trigger publish via CI.
39+
40+
## MCP Note
41+
- MCP (Model Context Protocol) is not part of this SDK. It is a separate integration layer for AI assistants.
42+
- Refer to `docs/MCP_INTEGRATION.md` in the repository for MCP setup and usage.

0 commit comments

Comments
 (0)