1. Conduid
  2. Developer Tools
  3. Context7 HTTP
MCP server · Developer Tools

Context7 HTTP

Context7 MCP Server (with HTTP SSE and Streamable)

Unclaimed MIT last commit 6 months ago mcpllmmcp-serverdevtoolsvibe-coding
66Good

Scored yesterday · breakdown

About Context7 HTTP

Context7 HTTP is an MCP server published by lrstanley in the Developer Tools category: context7 MCP Server (with HTTP SSE and Streamable). It has been installed 0 times through Conduid.

The repository has 22 stars and 3 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx context7-http

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Context7 HTTP

Powered by Claude · Grounded in docs

I know everything about Context7 HTTP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.5.1v0.5.1 · 31 Mar 2026Changelog Dependency updates 3073faa6a09ae19700f53497544e7c32b9a7e3f2: chore(deps): upgrade Go deps (@lrstanley) :test_tube: Build info :open_file_folder: **Full changelog**:…
v0.5.0v0.5.0 · 28 Mar 2026Changelog :broom: Misc 207c05b7482018a5ec5beae004524e109f429a67: feat: refactor & use official mcp sdk (@lrstanley) :test_tube: Build info :open_file_folder: **Full changelog**:…
v0.4.0v0.4.0 · 18 Jan 2026Changelog :broom: Misc 7c87ad17e6c8d1a50b524ea4b1514b83c686c58c: add renovate (@lrstanley) 766e2abdc213f7f7c2d55e038eb73dd62c5d0167: feat: switch to chix/clix v2, refactor logging (@lrstanley) :test_tube: Build info :open_file_folder:…
v0.3.0v0.3.0 · 23 Jun 2025Changelog :broom: Misc 4db0859eb205335a97238a232aad3a228edef2b1: misc actions changes (@lrstanley) Dependency updates b93a86f32513a0f7e2c6761535bc2447fc3586e5: chore(deps): upgrade deps (@lrstanley) :test_tube: Build info…
v0.2.0v0.2.0 · 26 May 2025Changelog :broom: Misc 587fa04b13a480d8762a320381622cf20a9b9157: add docker image & run-yourself sections (@lrstanley) f79e35130796222c22ed3df878911ef884df7f94: fix: misc linter items (@lrstanley) abd6845c15f8689172d67ec678d756a08836089a:…

README

logo

:link: Table of Contents

:sparkles: Features

context7-http is a MCP server that supports HTTP streaming for the Context7 project. This allows you to utilize the MCP server from anywhere, without installing anything locally.

  • HTTP streamable support.
  • Provides resolve-library-uri and search-library-docs tools for finding libraries, and searching their documentation.

[!WARNING] This server utilizes the v1 variant of the Context7 API, which may eventually be removed by the Context7 team. Note that the v2 API requires API keys, is drastically more ratelimited, and expanded use does require paying. See here.


:gear: Usage

If you'd like to run context7-http yourself, use the following:

$ context7-http \
    --debug \
    --bind-addr "0.0.0.0:8080" \
    --base-url https://context7.your-domain.com \ # only needed if using sse, http streamable doesn't need this
    --trusted-proxies "x-forwarded-for,10.0.0.0/8" \ # if behind a reverse proxy
    --heartbeat-interval 55s # for those with spotty networks or annoying network proxies

For all examples below, replace context7.liam.sh with your own MCP server URL, if you're running your own instance.

Configured endpoints:

  • https://context7.liam.sh/mcp - HTTP streamable endpoint.

Other than swapping out the mcpServer block (or similar, depending on your client), usage should match that of the official Context7 documentation

VSCode, Cursor, etc

Cursor MCP docs, and VS Code MCP docs for more info.

{
  "mcpServers": {
    "context7": {
      "url": "https://context7.liam.sh/mcp"
    }
  }
}

:whale: Container Images (ghcr)

$ docker run -it --rm ghcr.io/lrstanley/context7-http:master
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.5.1
$ docker run -it --rm ghcr.io/lrstanley/context7-http:latest
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.5.0
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.4.0
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.3.0
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.2.0
$ docker run -it --rm ghcr.io/lrstanley/context7-http:0.1.0

:books: References


:raising_hand_man: Support & Assistance

  • :heart: Please review the Code of Conduct for guidelines on ensuring everyone has the best experience interacting with the community.
  • :raising_hand_man: Take a look at the support document on guidelines for tips on how to ask the right questions.
  • :lady_beetle: For all features/bugs/issues/questions/etc, head over here.

:handshake: Contributing

  • :heart: Please review the Code of Conduct for guidelines on ensuring everyone has the best experience interacting with the community.
  • :clipboard: Please review the contributing doc for submitting issues/a guide on submitting pull requests and helping out.
  • :old_key: For anything security related, please review this repositories security policy.

:balance_scale: License

MIT License

Copyright (c) 2025 Liam Stanley <liam@liam.sh>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Also located here

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Context7 HTTP

How do I install Context7 HTTP?

Run npx context7-http, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Context7 HTTP safe to use with an AI agent?

Its trust score is 66 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Context7 HTTP still maintained?

Yes — the latest release is v0.5.1 (31 Mar 2026), and the last commit was 6 months ago. The repository has 22 stars and 0 open issues.