# Release v1.8.1: Syntax Error Fix
**Release Date:** 2025-12-16
## 🐛 Bug Fix
### Fixed SyntaxError in server.py
**Issue:** Missing closing parenthesis in `remove_node_intent` tool definition caused the MCP server to fail at startup.
**Error:**
```
SyntaxError: closing parenthesis ']' does not match opening parenthesis '(' on line 812
```
**Fix:** Added missing closing parenthesis `)` at line 816 in the `remove_node_intent` Tool definition.
## 📝 Technical Details
**Location:** `src/n8n_workflow_builder/server.py:816`
**Before:**
```python
Tool(
name="remove_node_intent",
description="🗑️ Remove intent metadata from a node.",
inputSchema={...}
] # Missing closing parenthesis
```
**After:**
```python
Tool(
name="remove_node_intent",
description="🗑️ Remove intent metadata from a node.",
inputSchema={...}
) # Fixed
]
```
## 🔍 Files Changed
- `src/n8n_workflow_builder/server.py` (1 line changed)
## ✅ Impact
- MCP server now starts correctly
- All 6 intent management tools are functional
- No functionality changes, only syntax correction
---
**Full Changelog**: v1.8.0...v1.8.1