Commit Graph

18 Commits

Author SHA1 Message Date
Fahreddin Özcan 9c7068a973 docs: remove broken Smithery badge and Star History chart from READMEs (#3004)
* docs: remove broken Smithery badge from READMEs

The smithery.ai/badge endpoint returns HTTP 500 with an empty body for
every server, not just Context7. Smithery also removed all badge
documentation from their docs, so the feature looks retired.

The Smithery listing itself is still live and the install section keeps
linking to it, which satisfies Smithery's backlink verification.

* docs: remove broken Star History chart from READMEs

GitHub restricted the stargazers API to repo admins and collaborators on
2026-06-30, so star-history.com can no longer build the chart. The SVG
still returns 200 but renders "GitHub restricted access to star data".

Restoring it would mean embedding a GitHub access token in the chart URL
and handing it to a third party, which we do not want to do.
2026-08-10 10:12:55 +03:00
Fahreddin Özcan b89a04e620 fix(cli): write the API key as an Authorization header (#2957)
* fix(cli): write the API key as an Authorization header

Codex resolves a server's auth mode by checking only for
`bearer_token_env_var` or a header literally named `Authorization`
(`auth_status_before_discovery` in codex-rs/rmcp-client/src/auth_status.rs,
mirrored in `create_transport` in rmcp_client.rs). The custom
`CONTEXT7_API_KEY` header matched neither, so Codex fell through to any OAuth
credential stored for the same server name and URL and refreshed it during
startup. A dead refresh token then failed the server with `invalid_grant`
before the API key was ever sent, and re-running setup could not recover it
because setup writes config.toml and never touches the credential store.

The hosted endpoint accepts both header forms, so existing configs keep
working.

Two places keep the legacy header deliberately: the plugin .mcp.json files
default to `${CONTEXT7_API_KEY:-}`, and the server rejects `Bearer` with an
empty token while treating a missing header as anonymous; and `env` blocks in
stdio configs, where the name is an environment variable rather than a header.

* fix(plugins): send the API key via the Authorization header

The Claude and Copilot plugin configs default to `${CONTEXT7_API_KEY:-}`, and
both plugins document that an unset key still works over the anonymous tier.
The Bearer form cannot express that: the server rejects `Bearer` with an empty
token while treating an empty or missing Authorization header as anonymous.

The raw-key form satisfies both states. It is genuinely parsed rather than
ignored, verified by an invalid raw key being rejected, so a set key still
authenticates while an unset one falls back to anonymous as documented.

Once the server treats an empty-token Bearer as no header, these can move to
the `Bearer <key>` form used everywhere else.

* refactor(cli): narrow the Codex OAuth probe and trim its surface

Only `oauth` proves a stored credential exists. `not_logged_in` also covers
"no credential, server merely advertises OAuth", which is the normal state for
anyone who never logged in, so treating it as stale told most users their
config held a credential it did not.

Collapse the module to the two functions the call site needs, derive nothing
from a hand-maintained status list, and skip the subprocess entirely when the
server is not already in Codex's config. Drop the probe timeout to 1.5s and
kill with SIGKILL so it is a real ceiling rather than an intent, since the
result is only an advisory hint.

Lock the plugin manifests' raw-key form behind a test, so normalizing them to
`Bearer` for consistency with the CLI fails loudly instead of silently
breaking anonymous access.

* refactor(cli): drop the Codex OAuth cleanup note

The note existed because re-running setup could not rescue a stuck user. The
Authorization header change in this same branch makes it rescue them: Codex
never reads the stored credential once that header is present, so the
credential is inert and the hint only offered cosmetic cleanup.

Removing it drops a subprocess spawn from a user-facing path and a dependency
on the shape of `codex mcp get --json`, an external contract this repo does not
pin. The reason the header name matters moves to `withHeaders`, where the
decision is encoded.
2026-07-29 18:38:10 +03:00
Enes Gules dbc4c78cca fix: update references from Windsurf to Devin Desktop in documentation and templates (#2736) 2026-06-09 12:48:42 +03:00
james LI 74c3505911 docs(i18n): sync zh-CN README with current main (#2558)
Co-authored-by: james <li@jamesdeMacBook-Pro.local>
Co-authored-by: Enes Gules <101020733+enesgules@users.noreply.github.com>
2026-05-25 12:00:21 +03:00
pablo 4f3363b228 fix: update broken links in i18n READMEs (#2175)
Co-authored-by: Maeve <maeve@wrkr.sh>
2026-03-11 04:41:36 +03:00
enesgules d2c34b04c3 Update installation commands across multiple languages to include the --scope user flag for Context7 in Claude Code. 2026-02-20 16:41:09 +03:00
mamaruo 7d7e042795 docs: updated the Chinese README and Qwen Code installation guide (#1553)
Co-authored-by: mamaruo <37480168+mamaruo@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-01-28 14:33:37 +03:00
Will 50fd7d28fd Fix i18n README files for proper markdown rendering (#1527) 2026-01-25 13:39:50 +03:00
Fahreddin Özcan b5942ddade docs: fix claude installation guides with correct args location (#1438) 2026-01-13 01:01:05 +03:00
Fahreddin Özcan f0e42a9099 fix(docs): reoder claude installation guide (#1405)
* fix(docs): reoder claude installation guide

* fix(docs): reoder claude installation guide
2026-01-09 09:54:50 -08:00
이동현 4789e1eb26 docs(i18n): synchronize README.ko.md with README.md (#1374) 2026-01-07 10:37:26 +03:00
Enes Akar 66ea0d6aad new arch (#1283)
Co-authored-by: enesgules <abdullah.enes.gules@gmail.com>
2025-12-29 13:41:26 +03:00
Enes Gules 6983b20173 fix: use absolute GitHub URL for cover image in README files (#1208) 2025-12-11 22:11:27 +03:00
enesgules dea13d122b docs: update get-library-docs parameter from tokens to page 2025-11-17 19:40:53 +03:00
enesgules ad04b1e643 chore: format 2025-11-14 17:56:41 +03:00
enesgules edd425a753 Merge remote-tracking branch 'origin' into docs 2025-11-12 17:07:23 +03:00
enesgules 7bc0f4fc32 Merge remote-tracking branch 'origin' into docs 2025-11-06 10:03:27 +03:00
enesakar 764d6272e3 improve docs 2025-10-17 13:04:05 -07:00