modelcontextprotocol /
python-sdk
The official Python SDK for Model Context Protocol servers and clients
Recently updatedPopularActive repositoryHas homepage
PythonMIT
⑂ 3.6K forks◯ 540 issuesUpdated today
Project homepage ↗Loading repository data…
JWhist / repository
Official SDKs for the DocRenders API (Go, JavaScript/TypeScript, Python)
Official client libraries for the DocRenders API — convert Markdown or HTML to production-ready PDFs with a single API call.
| SDK | Directory | Package |
|---|---|---|
| Go | /go | github.com/JWhist/docrenders-sdks/go |
| JavaScript / TypeScript | /js | docrenders-sdk (npm) |
| Python | /python | docrenders-sdk (PyPI) |
import docrenders "github.com/JWhist/docrenders-sdks/go"
client := docrenders.NewClient("dcr_live_YOUR_API_KEY")
pdf, err := client.Render(ctx, docrenders.RenderRequest{
Markdown: "# Invoice\n\nDue: **$1,200**",
})
import DocRendersClient from "docrenders-sdk";
const client = new DocRendersClient("dcr_live_YOUR_API_KEY");
const pdf = await client.render({ markdown: "# Invoice\n\nDue: **$1,200**" });
from docrenders import DocRendersClient, RenderRequest
client = DocRendersClient("dcr_live_YOUR_API_KEY")
pdf = client.render(RenderRequest(markdown="# Invoice\n\nDue: **$1,200**"))
See the DocRenders API docs for the full reference.
Selected from shared topics, language and repository description—not editorial ratings.
modelcontextprotocol /
The official Python SDK for Model Context Protocol servers and clients
elevenlabs /
The official Python SDK for the ElevenLabs API.
getsentry /
The official Python SDK for Sentry.io
a2aproject /
Official Python SDK for the Agent2Agent (A2A) Protocol
alpacahq /
The Official Python SDK for Alpaca API
dropbox /
The Official Dropbox API V2 SDK for Python