Skip to content

Commit 7e5d6f1

Browse files
authored
fix: correct Context7 icon URL and npx transport (#93)
- Fix icon to use Upstash org avatar (u/74989412) instead of wrong org (u/1529926) - Pass API key via --api-key CLI flag instead of env var per upstream README - Pin @upstash/context7-mcp@latest for consistent version resolution Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent a0f5eda commit 7e5d6f1

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

servers/com.context7-mcp-docker.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Context7 (Docker)",
55
"alias": "context7-docker",
66
"description": "Fetch up-to-date, version-specific documentation and code examples for any library directly into LLM prompts via Docker. Prevents hallucinated APIs by pulling current docs from the source.",
7-
"icon": "https://avatars.githubusercontent.com/u/1529926?v=4",
7+
"icon": "https://avatars.githubusercontent.com/u/74989412?v=4",
88
"schema_version": "2.1",
99
"categories": [
1010
"developer-tools",

servers/com.context7-mcp-http.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Context7 (HTTP)",
55
"alias": "context7-http",
66
"description": "Fetch up-to-date, version-specific documentation and code examples for any library via Context7's hosted MCP endpoint. No local install needed.",
7-
"icon": "https://avatars.githubusercontent.com/u/1529926?v=4",
7+
"icon": "https://avatars.githubusercontent.com/u/74989412?v=4",
88
"schema_version": "2.1",
99
"categories": [
1010
"developer-tools",

servers/com.context7-mcp-npx.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Context7 (npx)",
55
"alias": "context7",
66
"description": "Fetch up-to-date, version-specific documentation and code examples for any library directly into LLM prompts. Prevents hallucinated APIs by pulling current docs from the source.",
7-
"icon": "https://avatars.githubusercontent.com/u/1529926?v=4",
7+
"icon": "https://avatars.githubusercontent.com/u/74989412?v=4",
88
"schema_version": "2.1",
99
"categories": [
1010
"developer-tools",
@@ -24,11 +24,10 @@
2424
"command": "npx",
2525
"args": [
2626
"-y",
27-
"@upstash/context7-mcp"
27+
"@upstash/context7-mcp@latest",
28+
"--api-key",
29+
"${input:CONTEXT7_API_KEY}"
2830
],
29-
"env": {
30-
"CONTEXT7_API_KEY": "${input:CONTEXT7_API_KEY}"
31-
},
3231
"metadata": {
3332
"inputs": [
3433
{

0 commit comments

Comments
 (0)