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
Copy file name to clipboardExpand all lines: README.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# mcp-server-python-docs
2
2
3
-
A read-only, version-aware MCP server for Python standard library documentation, optimized for low-token, section-level retrieval.
3
+
A corporate-friendly, read-only, version-aware MCP server for Python standard library documentation, optimized for low-token, section-level retrieval.
4
4
5
-
It gives Claude, Cursor, and other MCP clients precise answers to Python stdlib questions without dumping whole documentation pages into the context window.
5
+
It gives Claude, Cursor, and other MCP clients precise answers to Python stdlib questions without dumping whole documentation pages into the context window, without requiring API keys, and without depending on a hosted docs provider at query time.
6
6
7
7
## Why this exists
8
8
@@ -15,6 +15,14 @@ General-purpose doc retrieval is often noisy for Python stdlib questions:
15
15
16
16
This server builds a local index from official Python documentation and exposes a small MCP tool surface tuned for high-signal retrieval.
17
17
18
+
## Why teams like this
19
+
20
+
- no API keys to provision, rotate, or justify
21
+
- official Python docs as the source of truth
22
+
- local index, so runtime retrieval does not depend on a third-party hosted docs API
23
+
- read-only behavior with a simple security story
24
+
- easy to explain in corporate environments where external dependencies raise friction
25
+
18
26
## What you get
19
27
20
28
- exact symbol lookup from Python `objects.inv`
@@ -118,7 +126,9 @@ The core docs surface is still intentionally small: search, retrieve, and inspec
118
126
If you're evaluating whether this is useful in practice, the key point is simple:
119
127
120
128
**this is not a generic web fetcher for Python docs.**
121
-
It is a purpose-built MCP server for official Python documentation with exact symbol resolution, version awareness, and token-efficient section retrieval.
129
+
It is a purpose-built MCP server for official Python documentation with exact symbol resolution, version awareness, token-efficient section retrieval, and a cleaner corporate story than API-key-based doc services.
130
+
131
+
Think of it as an MCP passthrough to the official Python docs, but indexed locally so LLMs can retrieve the right section without hauling entire pages into context.
0 commit comments