iflow-mcp_excelsier-things3-enhanced-mcp 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,444 @@
1
+ Metadata-Version: 2.4
2
+ Name: iflow-mcp_excelsier-things3-enhanced-mcp
3
+ Version: 1.0.0
4
+ Summary: Enhanced FastMCP server for Things 3 app integration with Claude Desktop and Windsurf - featuring reliability improvements, caching, and AppleScript bridge
5
+ Project-URL: Homepage, https://github.com/iflow-mcp/excelsier-things-fastmcp
6
+ Project-URL: Bug Tracker, https://github.com/iflow-mcp/excelsier-things-fastmcp/issues
7
+ Project-URL: Documentation, https://github.com/iflow-mcp/excelsier-things-fastmcp#readme
8
+ Author-email: Yaroslav Krempovych <51231325+excelsior@users.noreply.github.com>, Harald Lindstrøm <hald@users.noreply.github.com>
9
+ License: MIT License
10
+ License-File: LICENSE
11
+ Keywords: anthropic,apple,claude,fastmcp,macos,mcp,productivity,task-management,things,things3
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: End Users/Desktop
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Office/Business :: Scheduling
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: Utilities
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: httpx>=0.28.1
23
+ Requires-Dist: mcp[cli]>=1.2.0
24
+ Requires-Dist: things-py>=0.0.15
25
+ Provides-Extra: dev
26
+ Requires-Dist: build>=0.10.0; extra == 'dev'
27
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
28
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
29
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
30
+ Requires-Dist: twine>=4.0.0; extra == 'dev'
31
+ Description-Content-Type: text/markdown
32
+
33
+ # Things MCP Server
34
+
35
+ This [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server lets you use Claude Desktop to interact with your task management data in [Things app](https://culturedcode.com/things). You can ask Claude to create tasks, analyze projects, help manage priorities, and more.
36
+
37
+ This server leverages the [Things.py](https://github.com/thingsapi/things.py) library and the [Things URL Scheme](https://culturedcode.com/things/help/url-scheme/), with additional reliability features including:
38
+
39
+ - **Robust error handling** with exponential backoff and retry mechanisms
40
+ - **Circuit breaker pattern** to prevent cascading failures
41
+ - **Dead letter queue** for failed operations
42
+ - **Intelligent caching** for improved performance
43
+ - **Comprehensive logging** with structured JSON output
44
+ - **AppleScript bridge** for operations that fail with URL schemes
45
+ - **Rate limiting** to prevent overwhelming the Things app
46
+ - **Extensive test suite** for reliability
47
+
48
+ ## Why Things MCP?
49
+
50
+ This MCP server unlocks the power of AI for your task management:
51
+
52
+ - **Natural Language Task Creation**: Ask Claude to create tasks with all details in natural language
53
+ - **Smart Task Analysis**: Get insights into your projects and productivity patterns
54
+ - **GTD & Productivity Workflows**: Let Claude help you implement productivity systems
55
+ - **Seamless Integration**: Works directly with your existing Things 3 data
56
+
57
+ ## Features
58
+
59
+ - Access to all major Things lists (Inbox, Today, Upcoming, etc.)
60
+ - Project and area management
61
+ - Tag operations
62
+ - Advanced search capabilities
63
+ - Recent items tracking
64
+ - Detailed item information including checklists
65
+ - Support for nested data (projects within areas, todos within projects)
66
+
67
+ ## Installation Options
68
+
69
+ There are multiple ways to install and use the Things MCP server:
70
+
71
+ ### Option 1: Install from PyPI (Recommended)
72
+
73
+ #### Prerequisites
74
+ * Python 3.12+
75
+ * Claude Desktop
76
+ * Things 3 ("Enable Things URLs" must be turned on in Settings -> General)
77
+ * Things Authentication Token (required for URL scheme operations)
78
+
79
+ #### Installation
80
+
81
+ ```bash
82
+ pip install things-mcp
83
+ ```
84
+
85
+ Or using uv (recommended):
86
+
87
+ ```bash
88
+ uv pip install things-mcp
89
+ ```
90
+
91
+ #### Running
92
+
93
+ After installation, you can run the server directly:
94
+
95
+ ```bash
96
+ things-mcp
97
+ ```
98
+
99
+ ### Option 2: Manual Installation
100
+
101
+ #### Prerequisites
102
+ * Python 3.12+
103
+ * Claude Desktop
104
+ * Things 3 ("Enable Things URLs" must be turned on in Settings -> General)
105
+
106
+ #### Step 1: Install uv
107
+ Install uv if you haven't already:
108
+ ```bash
109
+ curl -LsSf https://astral.sh/uv/install.sh | sh
110
+ ```
111
+ Restart your terminal afterwards.
112
+
113
+ #### Step 2: Clone this repository
114
+ ```bash
115
+ git clone https://github.com/hald/things-mcp
116
+ cd things-mcp
117
+ ```
118
+
119
+ #### Step 3: Set up Python environment and dependencies
120
+ ```bash
121
+ uv venv
122
+ uv pip install -r pyproject.toml
123
+ ```
124
+
125
+ ### Step 4: Configure Things authentication token
126
+ Run the configuration tool to set up your Things authentication token:
127
+ ```bash
128
+ python configure_token.py
129
+ ```
130
+ This will guide you through the process of configuring your Things authentication token, which is required for the MCP server to interact with your Things app.
131
+
132
+ ### Step 5: Configure Claude Desktop
133
+ Edit the Claude Desktop configuration file:
134
+ ```bash
135
+ code ~/Library/Application\ Support/Claude/claude_desktop_config.json
136
+ ```
137
+
138
+ Add the Things server to the mcpServers key in the configuration file (be sure to update the path to the folder where you installed these files):
139
+ ```json
140
+ {
141
+ "mcpServers": {
142
+ "things": {
143
+ "command": "uv",
144
+ "args": [
145
+ "--directory",
146
+ "/ABSOLUTE/PATH/TO/PARENT/FOLDER/things-mcp",
147
+ "run",
148
+ "things_server.py"
149
+ ]
150
+ }
151
+ }
152
+ }
153
+ ```
154
+
155
+ ### Step 6: Configure Authentication Token
156
+ The Things URL scheme requires an authentication token. You can find it in Things → Settings → General.
157
+
158
+ Option 1: Set via configuration script
159
+ ```bash
160
+ python configure_token.py
161
+ ```
162
+
163
+ Option 2: Set via environment variable
164
+ ```bash
165
+ export THINGS_AUTH_TOKEN="your-token-here"
166
+ ```
167
+
168
+ Option 3: Manually create config file
169
+ ```bash
170
+ mkdir -p ~/.things-mcp
171
+ echo '{"things_auth_token": "your-token-here"}' > ~/.things-mcp/config.json
172
+ ```
173
+
174
+ ### Step 7: Restart Claude Desktop
175
+ Restart the Claude Desktop app to apply the changes.
176
+
177
+ ### Sample Usage with Claude Desktop
178
+ * "What's on my todo list today?"
179
+ * "Create a todo to pack for my beach vacation next week, include a packling checklist."
180
+ * "Evaluate my current todos using the Eisenhower matrix."
181
+ * "Help me conduct a GTD-style weekly review using Things."
182
+
183
+ #### Tips
184
+ * Create a project in Claude with custom instructions that explains how you use Things and organize areas, projects, tags, etc. Tell Claude what information you want included when it creates a new task (eg asking it to include relevant details in the task description might be helpful).
185
+ * Try adding another MCP server that gives Claude access to your calendar. This will let you ask Claude to block time on your calendar for specific tasks, create todos from upcoming calendar events (eg prep for a meeting), etc.
186
+
187
+
188
+ ### Available Tools
189
+
190
+ #### List Views
191
+ - `get-inbox` - Get todos from Inbox
192
+ - `get-today` - Get todos due today
193
+ - `get-upcoming` - Get upcoming todos
194
+ - `get-anytime` - Get todos from Anytime list
195
+ - `get-someday` - Get todos from Someday list
196
+ - `get-logbook` - Get completed todos
197
+ - `get-trash` - Get trashed todos
198
+
199
+ #### Basic Operations
200
+ - `get-todos` - Get todos, optionally filtered by project
201
+ - `get-projects` - Get all projects
202
+ - `get-areas` - Get all areas
203
+
204
+ #### Tag Operations
205
+ - `get-tags` - Get all tags
206
+ - `get-tagged-items` - Get items with a specific tag
207
+
208
+ #### Search Operations
209
+ - `search-todos` - Simple search by title/notes
210
+ - `search-advanced` - Advanced search with multiple filters
211
+
212
+ #### Time-based Operations
213
+ - `get-recent` - Get recently created items
214
+
215
+ #### Modification Operations
216
+ - `add-todo` - Create a new todo with full parameter support
217
+ - `add-project` - Create a new project with tags and todos
218
+ - `update-todo` - Update an existing todo
219
+ - `update-project` - Update an existing project
220
+ - `delete-todo` - Delete a todo (moves to trash)
221
+ - `delete-project` - Delete a project (moves to trash)
222
+ - `show-item` - Show a specific item or list in Things
223
+ - `search-items` - Search for items in Things
224
+
225
+ ## Tool Parameters
226
+
227
+ ### get-todos
228
+ - `project_uuid` (optional) - Filter todos by project
229
+ - `include_items` (optional, default: true) - Include checklist items
230
+
231
+ ### get-projects / get-areas / get-tags
232
+ - `include_items` (optional, default: false) - Include contained items
233
+
234
+ ### search-advanced
235
+ - `status` - Filter by status (incomplete/completed/canceled)
236
+ - `start_date` - Filter by start date (YYYY-MM-DD)
237
+ - `deadline` - Filter by deadline (YYYY-MM-DD)
238
+ - `tag` - Filter by tag
239
+ - `area` - Filter by area UUID
240
+ - `type` - Filter by item type (to-do/project/heading)
241
+
242
+ ### get-recent
243
+ - `period` - Time period (e.g., '3d', '1w', '2m', '1y')
244
+
245
+ ### add-todo
246
+ - `title` - Title of the todo
247
+ - `notes` (optional) - Notes for the todo
248
+ - `when` (optional) - When to schedule the todo (today, tomorrow, evening, anytime, someday, or YYYY-MM-DD)
249
+ - `deadline` (optional) - Deadline for the todo (YYYY-MM-DD)
250
+ - `tags` (optional) - Tags to apply to the todo
251
+ - `list_title` or `list_id` (optional) - Title or ID of project/area to add to
252
+ - `heading` (optional) - Heading to add under
253
+ - `checklist_items` (optional) - Checklist items to add
254
+
255
+ ### update-todo
256
+ - `id` - ID of the todo to update
257
+ - `title` (optional) - New title
258
+ - `notes` (optional) - New notes
259
+ - `when` (optional) - New schedule
260
+ - `deadline` (optional) - New deadline
261
+ - `tags` (optional) - New tags
262
+ - `completed` (optional) - Mark as completed
263
+ - `canceled` (optional) - Mark as canceled
264
+
265
+ ### add-project
266
+ - `title` - Title of the project
267
+ - `notes` (optional) - Notes for the project
268
+ - `when` (optional) - When to schedule the project
269
+ - `deadline` (optional) - Deadline for the project
270
+ - `tags` (optional) - Tags to apply to the project
271
+ - `area_title` or `area_id` (optional) - Title or ID of area to add to
272
+ - `todos` (optional) - Initial todos to create in the project
273
+
274
+ ### update-project
275
+ - `id` - ID of the project to update
276
+ - `title` (optional) - New title
277
+ - `notes` (optional) - New notes
278
+ - `when` (optional) - New schedule
279
+ - `deadline` (optional) - New deadline
280
+ - `tags` (optional) - New tags
281
+ - `completed` (optional) - Mark as completed
282
+ - `canceled` (optional) - Mark as canceled
283
+
284
+ ### delete-todo
285
+ - `id` - ID of the todo to delete (moves to trash)
286
+
287
+ ### delete-project
288
+ - `id` - ID of the project to delete (moves to trash)
289
+
290
+ ### show-item
291
+ - `id` - ID of item to show, or one of: inbox, today, upcoming, anytime, someday, logbook
292
+ - `query` (optional) - Optional query to filter by
293
+ - `filter_tags` (optional) - Optional tags to filter by
294
+
295
+ ## Important Limitations
296
+
297
+ ### Tags
298
+ - Tags must exist in Things before they can be applied to todos or projects
299
+ - The MCP server will automatically create missing tags when you try to use them
300
+ - If tag creation fails, the todo/project will still be created but without tags
301
+
302
+ ### Authentication Token
303
+ - Required for all URL scheme operations (create, update, delete)
304
+ - Without a token, Things will prompt for authentication on each operation
305
+
306
+ ## Authentication Token Configuration
307
+
308
+ The Things MCP server requires an authentication token to interact with the Things app. This token is used to authorize URL scheme commands.
309
+
310
+ ### How to get your Things authentication token
311
+
312
+ 1. Open Things app on your Mac
313
+ 2. Go to Things → Preferences (⌘,)
314
+ 3. Select the General tab
315
+ 4. Make sure "Enable Things URLs" is checked
316
+ 5. Look for the authentication token displayed in the preferences window
317
+
318
+ ### Configuring the token
319
+
320
+ Run the included configuration tool to set up your token:
321
+
322
+ ```bash
323
+ python configure_token.py
324
+ ```
325
+
326
+ This interactive script will prompt you for your token and save it securely in your local configuration.
327
+
328
+ ## Development
329
+
330
+ This project uses `pyproject.toml` to manage dependencies and build configuration. It's built using the [Model Context Protocol](https://modelcontextprotocol.io), which allows Claude to securely access tools and data.
331
+
332
+ ### Implementation Options
333
+
334
+ This project provides two different implementation approaches:
335
+
336
+ 1. **Standard MCP Server** (`things_server.py`) - The original implementation that uses the basic MCP server pattern.
337
+
338
+ 2. **FastMCP Server** (`things_fast_server.py`) - A modern implementation using the FastMCP pattern for cleaner, more maintainable code with decorator-based tool registration.
339
+
340
+ ### Development Workflow
341
+
342
+ #### Setting up a development environment
343
+
344
+ ```bash
345
+ # Clone the repository
346
+ git clone https://github.com/hald/things-mcp
347
+ cd things-mcp
348
+
349
+ # Set up a virtual environment with development dependencies
350
+ uv venv
351
+ uv pip install -e ".[dev]" # Install in development mode with extra dependencies
352
+ ```
353
+
354
+ #### Testing changes during development
355
+
356
+ Use the MCP development server to test changes:
357
+
358
+ ```bash
359
+ # Test the FastMCP implementation
360
+ mcp dev things_fast_server.py
361
+
362
+ # Or test the traditional implementation
363
+ mcp dev things_server.py
364
+ ```
365
+
366
+ #### Building the package for PyPI
367
+
368
+ ```bash
369
+ python -m build
370
+ ```
371
+
372
+ #### Publishing to PyPI
373
+
374
+ ```bash
375
+ twine upload dist/*
376
+ ```
377
+
378
+ Requires Python 3.12+.
379
+
380
+ ## Reliability Features
381
+
382
+ ### Error Handling & Recovery
383
+ - **Retry Logic**: Automatic retries with exponential backoff for transient failures
384
+ - **Circuit Breaker**: Prevents repeated failures from overwhelming the system
385
+ - **Dead Letter Queue**: Failed operations are stored for later retry or analysis
386
+ - **AppleScript Fallback**: When URL scheme operations fail, falls back to direct AppleScript
387
+
388
+ ### Performance Optimization
389
+ - **Smart Caching**: Frequently accessed data is cached with appropriate TTLs
390
+ - **Rate Limiting**: Prevents overwhelming Things app with too many requests
391
+ - **Cache Invalidation**: Automatic cache clearing when data is modified
392
+
393
+ ### Monitoring & Debugging
394
+ - **Structured Logging**: JSON-formatted logs for better analysis
395
+ - **Operation Tracking**: Each operation is logged with timing and status
396
+ - **Cache Statistics**: Monitor cache performance with `get-cache-stats` tool
397
+ - **Log Locations**:
398
+ - Main logs: `~/.things-mcp/logs/things_mcp.log`
399
+ - Structured logs: `~/.things-mcp/logs/things_mcp_structured.json`
400
+ - Error logs: `~/.things-mcp/logs/things_mcp_errors.log`
401
+
402
+ ## Troubleshooting
403
+
404
+ The server includes error handling for:
405
+ - Invalid UUIDs
406
+ - Missing required parameters
407
+ - Things database access errors
408
+ - Data formatting errors
409
+ - Authentication token issues
410
+ - Network timeouts
411
+ - AppleScript execution failures
412
+
413
+ ### Common Issues
414
+
415
+ 1. **Missing or invalid token**: Run `python configure_token.py` to set up your token
416
+ 2. **Things app not running**: The server will attempt to launch Things automatically
417
+ 3. **URL scheme not enabled**: Check that "Enable Things URLs" is enabled in Things → Preferences → General
418
+ 4. **Operations failing**: Check the circuit breaker status and dead letter queue
419
+ 5. **Performance issues**: Monitor cache statistics with the `get-cache-stats` tool
420
+
421
+ ### Checking Logs
422
+
423
+ All errors are logged and returned with descriptive messages. To review the MCP logs:
424
+
425
+ ```bash
426
+ # Follow main logs in real-time
427
+ tail -f ~/.things-mcp/logs/things_mcp.log
428
+
429
+ # Check error logs
430
+ tail -f ~/.things-mcp/logs/things_mcp_errors.log
431
+
432
+ # View structured logs for analysis
433
+ cat ~/.things-mcp/logs/things_mcp_structured.json | jq
434
+
435
+ # Claude Desktop MCP logs
436
+ tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
437
+ ```
438
+
439
+ ### Advanced Debugging
440
+
441
+ 1. **Check Dead Letter Queue**: Failed operations are stored in `things_dlq.json`
442
+ 2. **Monitor Circuit Breaker**: Look for "Circuit breaker" messages in logs
443
+ 3. **Cache Performance**: Use `get-cache-stats` tool to check hit rates
444
+ 4. **Enable Debug Logging**: Set console level to DEBUG in `logging_config.py`
@@ -0,0 +1,20 @@
1
+ things_mcp/__init__.py,sha256=-EYvjX7OASYpz9sLatKPOGR9YUQxq5nudzcSgEgBD3U,113
2
+ things_mcp/applescript_bridge.py,sha256=t5ZTMAEn7jfT-bUywI2_wHuBQjuN4T4IFGHBagEQoTg,12633
3
+ things_mcp/cache.py,sha256=ZGTLaMjzQxBLm3mCXZLyjrGpdsc9-Oag87-3QCJy92A,8154
4
+ things_mcp/config.py,sha256=T59qlHv6Z4xvBhDnziFmkJlo7IdmxN4fn6mfEgfbOQA,3686
5
+ things_mcp/fast_server.py,sha256=UW7RFgkeobCuPfDpkFXi6yXZM_PAMfoW3WgZ4QMjD60,18905
6
+ things_mcp/formatters.py,sha256=EsDQ4FCMxVQnPLSE9Ad9HI35cO3MSEvNN4J5xBg4S-A,3992
7
+ things_mcp/handlers.py,sha256=OGISxoFJ0fYcENdTFWngaec2ZmjnEmZdeKX58hlv0SE,25926
8
+ things_mcp/logging_config.py,sha256=N5x-wlJKzKiwxOVEdJU36z1lmJYyKOz4S7Hm3Dk-ryQ,7746
9
+ things_mcp/mcp_tools.py,sha256=yvKueCSu_Lsz9-1-i8TRmLtPnvJBxgYfcswRSVTcuI0,16072
10
+ things_mcp/simple_server.py,sha256=SINUSuhPTG0wzTnRXZBVnSW6uiIK4lZAYMC9Fm4Kpv4,21151
11
+ things_mcp/simple_url_scheme.py,sha256=YdAhr8Q9v8Be-EQ9d6_6iitPPzGUowkFGq7UJ2Ine1U,6719
12
+ things_mcp/tag_handler.py,sha256=tjQ6J78auE5szCmwd8uaACDZB0OwolWCVmCaku7TljA,3298
13
+ things_mcp/things_server.py,sha256=lKBwxHZQJmot8_30J40ASkBsH9UmyhZhLcFF_PLYxjE,4320
14
+ things_mcp/url_scheme.py,sha256=h1pPJUTFHzaSxi7KHx4SJSMe5c3Udot5nsMLL-VgEe0,12050
15
+ things_mcp/utils.py,sha256=tm1XT9JJezv_lwW4V08JymL3jNEaxh66urWRU7iBzEg,12270
16
+ iflow_mcp_excelsier_things3_enhanced_mcp-1.0.0.dist-info/METADATA,sha256=KF5bWHv2HS-RdY4JZVw3_12kOfDHcBr1NBYKlMbIwYk,15422
17
+ iflow_mcp_excelsier_things3_enhanced_mcp-1.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
18
+ iflow_mcp_excelsier_things3_enhanced_mcp-1.0.0.dist-info/entry_points.txt,sha256=GRMYNMoujZaCed7xzCwfZ8mKXaDKiTItJCivPx7hwcs,106
19
+ iflow_mcp_excelsier_things3_enhanced_mcp-1.0.0.dist-info/licenses/LICENSE,sha256=M_XZW7rQnzgCEjyGldSIxkjd3-4FWURoEcRFeMTWQWk,1197
20
+ iflow_mcp_excelsier_things3_enhanced_mcp-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ iflow-mcp_excelsier-things3-enhanced-mcp = things_mcp.fast_server:run_things_mcp_server
@@ -0,0 +1,24 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Yaroslav Krempovych
4
+
5
+ Based on the original "things-mcp" project by Harald Lindstrøm
6
+ Original repository: https://github.com/hald/things-mcp
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
things_mcp/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """
2
+ Things MCP Server - Model Context Protocol server for Things task management app.
3
+ """
4
+
5
+ __version__ = "0.1.1"