Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ No installation needed. Add to your IDE's MCP config:
}
```

Or generate the MCP config file directly in your current directory:

```bash
npx -y contextplus init claude
bunx contextplus init cursor
```

Supported coding agent names: `claude`, `cursor`, `vscode`, `windsurf`.

Config file locations:

| IDE | Config File |
Expand Down Expand Up @@ -91,11 +100,11 @@ Three layers built with TypeScript over stdio using the Model Context Protocol S

## Config

| Variable | Default | Description |
| -------------------- | ------------------ | --------------------------------- |
| `OLLAMA_EMBED_MODEL` | `nomic-embed-text` | Embedding model |
| `OLLAMA_API_KEY` | — | Cloud auth (auto-detected by SDK) |
| `OLLAMA_CHAT_MODEL` | `llama3.2` | Chat model for cluster labeling |
| Variable | Default | Description |
| -------------------- | ------------------ | ------------------------------- |
| `OLLAMA_EMBED_MODEL` | `nomic-embed-text` | Embedding model |
| `OLLAMA_API_KEY` | — | Ollama Cloud API key |
| `OLLAMA_CHAT_MODEL` | `llama3.2` | Chat model for cluster labeling |

## Test

Expand Down
3 changes: 3 additions & 0 deletions landing/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
import type { NextConfig } from "next";

initOpenNextCloudflareForDev();

const nextConfig: NextConfig = {
reactCompiler: true,
turbopack: {
Expand Down
8 changes: 1 addition & 7 deletions landing/open-next.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
// default open-next.config.ts file created by @opennextjs/cloudflare
import { defineCloudflareConfig } from "@opennextjs/cloudflare";
// import r2IncrementalCache from "@opennextjs/cloudflare/overrides/incremental-cache/r2-incremental-cache";

export default defineCloudflareConfig({
// For best results consider enabling R2 caching
// See https://opennext.js.org/cloudflare/caching for more details
// incrementalCache: r2IncrementalCache
});
export default defineCloudflareConfig({});
Loading