Skip to content

Add support for fixed pipeline ID via environment variable #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ jobs:

- name: Lint
run: npm run lint

- name: Test
run: npm test
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,20 @@ A Model Context Protocol (MCP) server implementation that integrates with [Vecto
```bash
export VECTORIZE_ORG_ID=YOUR_ORG_ID
export VECTORIZE_TOKEN=YOUR_TOKEN
# Optional: Set a fixed pipeline ID to use for all requests
export VECTORIZE_PIPELINE_ID=YOUR_PIPELINE_ID
npx -y @vectorize-io/vectorize-mcp-server
```

## Configuration on Claude/Windsurf
## Environment Variables

| Variable | Required | Description |
|----------|----------|-------------|
| `VECTORIZE_ORG_ID` | Yes | Your Vectorize organization ID |
| `VECTORIZE_TOKEN` | Yes | Your Vectorize API token |
| `VECTORIZE_PIPELINE_ID` | No | Optional fixed pipeline ID to use for all requests |

## Configuration Example

```json
{
Expand All @@ -28,12 +38,15 @@ npx -y @vectorize-io/vectorize-mcp-server
"args": ["-y", "@vectorize-io/vectorize-mcp-server"],
"env": {
"VECTORIZE_ORG_ID": "your-org-id",
"VECTORIZE_TOKEN": "your-token"
"VECTORIZE_TOKEN": "your-token",
"VECTORIZE_PIPELINE_ID": "your-pipeline-id"
}
}
}
}
```

This configuration works with Claude/Windsurf, Cursor, Cline, and other MCP-compatible clients.
## Tools

### Retrieve documents
Expand Down Expand Up @@ -94,4 +107,4 @@ npm run build

1. Fork the repository
2. Create your feature branch
3. Submit a pull request
3. Submit a pull request
Loading