@voyage-sdk/mcp
v0.1.1
Published
Voyage MCP Server - Access Voyage tasks from your editor
Downloads
18
Readme
@voyage-sdk/mcp
Voyage MCP Server — Access your Voyage tasks directly from your editor.
Setup
1. Get an API Key
Go to Voyage Dashboard → API Keys and create a new key.
2. Configure your editor
Claude Code (.mcp.json)
{
"mcpServers": {
"voyage": {
"command": "npx",
"args": ["@voyage-sdk/mcp"],
"env": {
"VOYAGE_API_KEY": "vyk_your_api_key_here"
}
}
}
}VS Code / Cursor
Add to your MCP settings:
{
"voyage": {
"command": "npx",
"args": ["@voyage-sdk/mcp"],
"env": {
"VOYAGE_API_KEY": "vyk_your_api_key_here"
}
}
}Available Tools
| Tool | Description | Parameters |
|------|-------------|------------|
| list_projects | List your Voyage projects | — |
| list_tasks | List tasks for a project | projectId |
| sync_tasks | Download all tasks as .md files | projectId |
| download_task | Download a single task as .md | taskId |
File Structure
When using sync_tasks or download_task, files are saved to:
voyage-tasks/
├── my-project/
│ ├── TASK-1-login-bug.md
│ ├── TASK-2-signup-feature.md
│ └── ...
└── other-project/
└── TASK-1-xxx.md