@mcampa/ai-context-mcp 0.0.1-beta.c518c19 → 0.0.1-beta.f7ff6c2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ OPENAI_BASE_URL=https://api.openai.com/v1
|
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
**Available Models:**
|
|
58
|
-
See `getSupportedModels` in [`openai-embedding.ts`](https://github.com/
|
|
58
|
+
See `getSupportedModels` in [`openai-embedding.ts`](https://github.com/mcampa/ai-context/blob/master/packages/core/src/embedding/openai-embedding.ts) for the full list of supported models.
|
|
59
59
|
|
|
60
60
|
**Getting API Key:**
|
|
61
61
|
|
|
@@ -80,7 +80,7 @@ EMBEDDING_MODEL=voyage-code-3
|
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
**Available Models:**
|
|
83
|
-
See `getSupportedModels` in [`voyageai-embedding.ts`](https://github.com/
|
|
83
|
+
See `getSupportedModels` in [`voyageai-embedding.ts`](https://github.com/mcampa/ai-context/blob/master/packages/core/src/embedding/voyageai-embedding.ts) for the full list of supported models.
|
|
84
84
|
|
|
85
85
|
**Getting API Key:**
|
|
86
86
|
|
|
@@ -108,7 +108,7 @@ GEMINI_BASE_URL=https://generativelanguage.googleapis.com/v1beta
|
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
**Available Models:**
|
|
111
|
-
See `getSupportedModels` in [`gemini-embedding.ts`](https://github.com/
|
|
111
|
+
See `getSupportedModels` in [`gemini-embedding.ts`](https://github.com/mcampa/ai-context/blob/master/packages/core/src/embedding/gemini-embedding.ts) for the full list of supported models.
|
|
112
112
|
|
|
113
113
|
**Getting API Key:**
|
|
114
114
|
|
|
@@ -600,7 +600,7 @@ Zencoder offers support for MCP tools and servers in both its JetBrains and VS C
|
|
|
600
600
|
<details>
|
|
601
601
|
<summary><strong>LangChain/LangGraph</strong></summary>
|
|
602
602
|
|
|
603
|
-
For LangChain/LangGraph integration examples, see [this example](https://github.com/
|
|
603
|
+
For LangChain/LangGraph integration examples, see [this example](https://github.com/mcampa/ai-context/blob/643796a0d30e706a2a0dff3d55621c9b5d831807/evaluation/retrieval/custom.py#L88).
|
|
604
604
|
|
|
605
605
|
</details>
|
|
606
606
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcampa/ai-context-mcp",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.f7ff6c2",
|
|
4
4
|
"description": "Model Context Protocol integration for Claude Context",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": "dist/index.js",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@mcampa/ai-context-core": "0.0.1-beta.
|
|
10
|
+
"@mcampa/ai-context-core": "0.0.1-beta.f7ff6c2",
|
|
11
11
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
12
12
|
"zod": "^3.25.55"
|
|
13
13
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/mcampa/
|
|
25
|
+
"url": "https://github.com/mcampa/ai-context.git",
|
|
26
26
|
"directory": "packages/mcp"
|
|
27
27
|
},
|
|
28
28
|
"license": "MIT",
|