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
10 changes: 1 addition & 9 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,7 @@ Ask the AI agent natural language questions like:
- "What tasks are overdue?"
- "Create an AI agent that monitors project deadlines"

### Alternative: HTTP/SSE mode

If you prefer to run the MCP server as a standalone HTTP service:

```bash
PORT=3001 npx @taskade/mcp-server --http --token YOUR_TASKADE_API_KEY
```

Then configure the n8n MCP node to use **HTTP Streamable** transport with URL `http://localhost:3001/mcp`.
> **Note:** The published `@taskade/mcp-server` CLI runs over **stdio** only — configure the n8n MCP Client node with the command `npx -y @taskade/mcp-server` and a `TASKADE_API_KEY` environment variable. The `--http`/`--token` flags are **not** supported by the published CLI. A standalone HTTP/SSE transport is not yet exposed; track the hosted remote endpoint at [#6](https://github.com/taskade/mcp/issues/6).

## More examples coming soon

Expand Down
3 changes: 2 additions & 1 deletion examples/n8n-taskade-mcp-workflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"parameters": {
"connectionType": "stdio",
"command": "npx",
"arguments": "-y @taskade/mcp-server --token YOUR_TASKADE_API_KEY"
"arguments": "-y @taskade/mcp-server",
"environments": "TASKADE_API_KEY=YOUR_TASKADE_API_KEY"
},
"id": "mcp-taskade",
"name": "Taskade MCP",
Expand Down
5 changes: 2 additions & 3 deletions smithery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ startCommand:
type: string
title: "Taskade API Key"
description: "Your Taskade API key. Get it from Taskade Settings > API."
commandFunction:
|-
(config) => ({ command: 'npx', args: ['-y', '@taskade/mcp-server', '--token', config.apiKey] })
commandFunction: |-
(config) => ({ command: 'npx', args: ['-y', '@taskade/mcp-server'], env: { TASKADE_API_KEY: config.apiKey } })