mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2026-01-30 06:12:05 +00:00
This PR was automatically generated to update documentation based on recent changes. Original commit: Fix: upgrade fastmcp to latest non-breaking version (#1422)\n\nCloses [#1413](https://github.com/eyaltoledano/claude-task-master/issues/1413)\nCloses [#1411](https://github.com/eyaltoledano/claude-task-master/issues/1411)\n\n Co-authored-by: Claude <claude-assistant@anthropic.com>
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
---
|
|
title: FAQ
|
|
sidebarTitle: "FAQ"
|
|
---
|
|
|
|
## 🔧 Troubleshooting
|
|
|
|
### MCP Connection Issues
|
|
|
|
**Problem**: MCP client shows "Server does not support completions (required for completion/complete)" error
|
|
|
|
**Solution**: This issue has been resolved in Task Master v0.32.1 and later. Make sure you're using the latest version:
|
|
|
|
```bash
|
|
# Update to the latest version
|
|
npm install -g task-master-ai@latest
|
|
|
|
# Or for MCP usage
|
|
npx -y task-master-ai@latest
|
|
```
|
|
|
|
If you're still experiencing issues, try:
|
|
|
|
1. **Restart your editor** after updating
|
|
2. **Check your MCP configuration** includes the correct server name and arguments
|
|
3. **Verify API keys** are properly configured in your environment
|
|
|
|
**Problem**: "0 tools enabled" in MCP settings
|
|
|
|
**Solution**:
|
|
1. Ensure at least one API key is configured in your MCP server environment
|
|
2. Restart your editor after adding API keys
|
|
3. Check that the server name matches exactly in your configuration
|
|
|
|
### Installation Issues
|
|
|
|
**Problem**: Command not found after global installation
|
|
|
|
**Solution**:
|
|
```bash
|
|
# Verify installation
|
|
npm list -g task-master-ai
|
|
|
|
# Re-install if needed
|
|
npm uninstall -g task-master-ai
|
|
npm install -g task-master-ai
|
|
```
|
|
|
|
## 💬 Getting Help
|
|
|
|
- **Discord**: [Join our community](https://discord.gg/taskmasterai)
|
|
- **Issues**: [GitHub Issues](https://github.com/eyaltoledano/claude-task-master/issues)
|
|
- **Discussions**: [GitHub Discussions](https://github.com/eyaltoledano/claude-task-master/discussions) |