246 Commits

Author SHA1 Message Date
Enes Gules
f18bbe4614
Merge pull request #336 from zadazorg/patch-1 2025-06-26 10:36:04 +03:00
Enes Gules
98cd24504d
Merge pull request #337 from Ifan24/add-gemini-cli-instructions 2025-06-26 10:34:50 +03:00
Ruiqi
6dd432d5e0 docs: add Gemini CLI installation instructions 2025-06-26 01:32:52 +10:00
Zada Zorg
d38be6d974
Update README.md with Warp integration instructions 2025-06-25 18:04:01 +03:00
Enes Gules
6b921c273e
Merge pull request #334 from w2xi/w2xi-patch-1 2025-06-25 16:45:24 +03:00
Enes Gules
dc215a85b2
Merge pull request #325 from philfung/master 2025-06-25 16:36:57 +03:00
Philip Fung
5446003880 README: added Cline to installation list 2025-06-25 06:30:54 -07:00
Philip Fung
eeb654584d
Merge branch 'upstash:master' into master 2025-06-25 06:28:59 -07:00
Philip Fung
fb0d7875d1 Revert "README: sorting the installation instructions by coding tool in alphabetical order"
This reverts commit 61b07d96d9c5103df8a399f6c3fec6f7e6b78acb.
2025-06-25 06:26:56 -07:00
Philip Fung
e85d3d8a34 Revert "added installation instructions for cline"
This reverts commit 835f674696576bc3e9a0f2a025ef22ad2dda9a10.
2025-06-25 06:26:38 -07:00
Philip Fung
ed30ceaad3 Revert "added cline link to readme"
This reverts commit 786693f7885eddb95649e2d29883afdff4e408db.
2025-06-25 06:26:10 -07:00
w2xi
f9d2b056b4
docs: fix typo 2025-06-25 17:31:17 +08:00
Enes Gules
9adaee2a17
Merge pull request #330 from niklas-wortmann/add-jetbrains 2025-06-24 23:55:04 +03:00
Jan-Niklas Wortmann
955188ecb2 README: add JetBrains AI Assistant installation instructions 2025-06-24 11:50:38 -05:00
enesgules
bcc3b97f3d docs: Update README with additional Claude Code remote server connection instructions 2025-06-24 09:38:49 +03:00
Philip Fung
786693f788 added cline link to readme 2025-06-23 08:14:29 -07:00
Philip Fung
835f674696 added installation instructions for cline 2025-06-23 08:11:35 -07:00
Philip Fung
61b07d96d9 README: sorting the installation instructions by coding tool in alphabetical order 2025-06-22 20:48:55 -07:00
Enes Gules
cef57953c4
Merge pull request #318 from InTheCloudDan/dob/qodoGen 2025-06-21 12:22:42 +03:00
Dan OBrien
a175d48a1d link to agentic docs 2025-06-20 17:19:42 -04:00
Dan OBrien
8bc69debdc Add Qodo Gen MCP instructions 2025-06-20 16:04:00 -04:00
Enes Gules
b5735ebc50
Merge pull request #305 from jnst/feature/japanese-readme 2025-06-18 18:54:14 +03:00
jnst
a47a3026f3 docs: Add Japanese translation 2025-06-18 16:59:39 +09:00
Enes Gules
e057538e9b
Merge pull request #294 from techcow2/my-documentation-update 2025-06-16 10:06:01 +03:00
techcow2
59fc2b4efd Add instructions for AugmentCode 2025-06-14 03:47:39 -04:00
Enes Gules
069044e99e
Merge pull request #291 from ryanleecode/chore/deno-read-me 2025-06-13 20:20:54 +03:00
Ryan Lee
e58addd388
chore: update deno readme
There's no reason to allow broad based access to all environment variables. As of right now, there is only the downstream dependency depd (https://github.com/dougwilson/nodejs-depd) which require the NO_DEPRECATION, TRACE_DEPRECATION. Lets limit the env variables to just this alone.

Also it advisible to setup some sort of CI to ensure these always work.
2025-06-13 10:03:36 -04:00
Enes Gules
d2083b92a7
Merge pull request #283 from nielthiart/fix-initialize-result v1.0.14 2025-06-13 09:40:22 +03:00
Enes Gules
7005d7d123
Merge pull request #287 from jongalloway/add-visual-studio 2025-06-13 09:28:21 +03:00
Jon Galloway
a0a94eefe2 docs: add installation instructions for Visual Studio 2022 2025-06-12 21:07:45 +00:00
Niel Thiart
fd2a2d6299
fix: Fix InitializeResult schema mismatch in Context7 server response
The response from the server was not matching the expected `InitializeResult` schema [^1].

1. The `serverInfo` field contained a `description` that was not part of the schema.
2. The `capabilities` field was incorrectly nested in `serverInfo`.
3. The `capabilities` field in the response included `resources`, even though this server does not support resources.

This change also adds an `instructions` field to the response, which provides guidance on how to use the server.

The SDK takes care of registering capabilities [^2], so we don't need to add this when instantiating the `server` object.

Response does not match `InitializeResult` schema:

```json
{
  "capabilities": {
    "tools": {
      "listChanged": true
    }
  },
  "serverInfo": {
    "name": "Context7",
    "version": "1.0.13",
    "description": "Retrieves up-to-date documentation and code examples for any library.",
    "capabilities": {
      "resources": {},
      "tools": {}
    }
  }
}
```

Response matches `InitializeResult` schema:

```json
{
  "capabilities": {
    "tools": {
      "listChanged": true
    }
  },
  "serverInfo": {
    "name": "Context7",
    "version": "1.0.13"
  },
  "instructions": "Use this server to retrieve up-to-date documentation and code examples for any library."
}
```

[^1]: https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/schema/2025-03-26/schema.ts#L179-L193

[^2]: 2cf4f0ca86/src/server/mcp.ts (L101)

Fixes https://github.com/upstash/context7/issues/282
2025-06-12 12:06:35 +02:00
Enes Akar
0bf9466a14
Merge pull request #278 from upstash/feat/replace-env-vars-with-cli-args
Feat/replace env vars with cli args
2025-06-11 22:17:47 +03:00
Enes Gules
6a3c48a89f
Merge branch 'master' into feat/replace-env-vars-with-cli-args 2025-06-11 15:14:22 +03:00
Enes Gules
f109390e00
Merge pull request #273 from ryof/master 2025-06-11 15:13:45 +03:00
Enes Gules
80e4aea67e
Merge branch 'master' into feat/replace-env-vars-with-cli-args 2025-06-11 15:01:13 +03:00
Abdusshh
4f04e02851 refactor: replace url.parse with URL API for session ID extraction and validate transports 2025-06-11 14:58:26 +03:00
Abdusshh
2e6c9a6c6b feat: replace env vars with CLI arguments, remove dotenv and add commander 2025-06-11 14:49:50 +03:00
ryof
2a3101dc43
docs: add installation instructions for Amazon Q Developer CLI 2025-06-11 10:11:12 +09:00
Enes Gules
00937fafef
Merge pull request #271 from viborc/patch-1 2025-06-10 09:19:37 +03:00
Vibor Cipan
62ee37d861
Adds instructions for Zencoder.ai 2025-06-09 14:45:00 +02:00
Enes Akar
1042650638
Merge pull request #265 from upstash/feat/improve-error-messages
feat: improve error handling
v1.0.13
2025-06-07 05:24:23 +03:00
Abdusshh
e66cdafe3c chore(format): run prettier 2025-06-07 00:24:20 +03:00
Abdusshh
a7b11bbee7 feat: improve error handling and response types for library search and documentation fetch 2025-06-07 00:20:52 +03:00
Enes Gules
f2f367d891
Merge pull request #262 from unbyte/docs/cursor-deeplink 2025-06-06 14:18:20 +03:00
Enes Gules
8a8cfa1c82
Merge pull request #248 from vaporif/update-lockfile 2025-06-05 22:15:48 +03:00
Enes Gules
6629783835
Merge pull request #249 from appleboy/docs 2025-06-05 22:06:12 +03:00
Enes Gules
be254b0f02
Merge pull request #255 from likweitan/master 2025-06-05 22:05:25 +03:00
unbyte
51ca970eeb docs: add deeplink for cursor 2025-06-06 01:01:03 +08:00
likweitan
71fb2eaeca docs: add installation instructions for Roo Code MCP integration 2025-06-03 21:43:13 +08:00
Bo-Yi Wu
8a275cb6da
chore: refactor codebase for improved maintainability and clarity
- No changes detected in the provided diff.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2025-06-02 11:40:15 +08:00