@crypto512/jicon-mcp 0.1.0 → 0.2.0
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.
- package/CLAUDE.md +9 -2
- package/README.md +41 -15
- package/TOOL_LIST.md +6 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js +1 -1
- package/package.json +2 -2
package/CLAUDE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Jira and
|
|
1
|
+
# Jira, Confluence, and Tempo MCP Server
|
|
2
2
|
|
|
3
3
|
## Overview
|
|
4
4
|
|
|
5
|
-
A Model Context Protocol (MCP) server that provides seamless integration with Atlassian Jira and
|
|
5
|
+
A Model Context Protocol (MCP) server that provides seamless integration with Atlassian Jira, Confluence, and Tempo Server/Data Center instances. This server enables AI assistants to interact with Jira issues, projects, boards, Confluence pages, spaces, content, and Tempo time tracking through a comprehensive set of tools.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -22,6 +22,13 @@ A Model Context Protocol (MCP) server that provides seamless integration with At
|
|
|
22
22
|
- **Attachments**: Upload and retrieve file attachments
|
|
23
23
|
- **Comments**: Add and view page comments
|
|
24
24
|
|
|
25
|
+
### Tempo Integration
|
|
26
|
+
- **Time Tracking**: Log, view, and manage work time
|
|
27
|
+
- **Worklog Management**: Create, update, and delete worklogs
|
|
28
|
+
- **Team Tracking**: Access team worklogs and time tracking data
|
|
29
|
+
- **Account Management**: View and manage Tempo accounts
|
|
30
|
+
- **User Info**: Retrieve user time tracking information
|
|
31
|
+
|
|
25
32
|
## Installation
|
|
26
33
|
|
|
27
34
|
```bash
|
package/README.md
CHANGED
|
@@ -17,10 +17,11 @@ npm install -g @crypto512/jicon-mcp
|
|
|
17
17
|
|
|
18
18
|
## What is Jicon?
|
|
19
19
|
|
|
20
|
-
Jicon is an MCP server that enables AI assistants like Claude to interact with your Jira and
|
|
20
|
+
Jicon is an MCP server that enables AI assistants like Claude to interact with your Jira, Confluence, and Tempo instances. It provides 39 powerful tools for:
|
|
21
21
|
|
|
22
22
|
- 🎫 **Jira**: Issue management, searching, project operations, Agile boards, sprints
|
|
23
23
|
- 📄 **Confluence**: Page management, content search, spaces, attachments, comments
|
|
24
|
+
- ⏱️ **Tempo**: Time tracking, worklog management, accounts, and teams
|
|
24
25
|
|
|
25
26
|
## Features at a Glance
|
|
26
27
|
|
|
@@ -38,6 +39,13 @@ Jicon is an MCP server that enables AI assistants like Claude to interact with y
|
|
|
38
39
|
- Manage attachments
|
|
39
40
|
- Add and view comments
|
|
40
41
|
|
|
42
|
+
### Tempo (11 Tools)
|
|
43
|
+
- Log and manage work time
|
|
44
|
+
- View and update worklogs
|
|
45
|
+
- Access accounts and teams
|
|
46
|
+
- Retrieve team worklogs
|
|
47
|
+
- Get user time tracking info
|
|
48
|
+
|
|
41
49
|
## Configuration
|
|
42
50
|
|
|
43
51
|
### Configuration with `.jicon.json` (Recommended)
|
|
@@ -79,13 +87,13 @@ Control which tools are allowed to execute:
|
|
|
79
87
|
```json
|
|
80
88
|
{ "permissions": { "mode": "full" } }
|
|
81
89
|
```
|
|
82
|
-
All
|
|
90
|
+
All 39 tools are available.
|
|
83
91
|
|
|
84
92
|
#### 2. **Read-Only Mode**
|
|
85
93
|
```json
|
|
86
94
|
{ "permissions": { "mode": "readonly" } }
|
|
87
95
|
```
|
|
88
|
-
Only read operations (
|
|
96
|
+
Only read operations (26 tools: 10 Jira + 8 Confluence + 8 Tempo).
|
|
89
97
|
|
|
90
98
|
#### 3. **Custom Mode** with Virtual Actions
|
|
91
99
|
|
|
@@ -98,23 +106,26 @@ Simplify configuration with **virtual actions** that group related tools:
|
|
|
98
106
|
- `confluence_read` - All 8 Confluence read tools
|
|
99
107
|
- `confluence_write` - All 5 Confluence write tools
|
|
100
108
|
- `confluence_all` - All 13 Confluence tools
|
|
109
|
+
- `tempo_read` - All 8 Tempo read tools
|
|
110
|
+
- `tempo_write` - All 3 Tempo write tools
|
|
111
|
+
- `tempo_all` - All 11 Tempo tools
|
|
101
112
|
|
|
102
|
-
**Example: Read-only access to
|
|
113
|
+
**Example: Read-only access to all services**
|
|
103
114
|
```json
|
|
104
115
|
{
|
|
105
116
|
"permissions": {
|
|
106
117
|
"mode": "custom",
|
|
107
|
-
"whitelist": ["jira_read", "confluence_read"]
|
|
118
|
+
"whitelist": ["jira_read", "confluence_read", "tempo_read"]
|
|
108
119
|
}
|
|
109
120
|
}
|
|
110
121
|
```
|
|
111
122
|
|
|
112
|
-
**Example: Full Jira + Confluence read-only**
|
|
123
|
+
**Example: Full Jira + Confluence read-only + Tempo time tracking**
|
|
113
124
|
```json
|
|
114
125
|
{
|
|
115
126
|
"permissions": {
|
|
116
127
|
"mode": "custom",
|
|
117
|
-
"whitelist": ["jira_all", "confluence_read"]
|
|
128
|
+
"whitelist": ["jira_all", "confluence_read", "tempo_all"]
|
|
118
129
|
}
|
|
119
130
|
}
|
|
120
131
|
```
|
|
@@ -128,7 +139,9 @@ Simplify configuration with **virtual actions** that group related tools:
|
|
|
128
139
|
"jira_search_issues",
|
|
129
140
|
"jira_get_issue",
|
|
130
141
|
"jira_create_issue",
|
|
131
|
-
"confluence_get_page"
|
|
142
|
+
"confluence_get_page",
|
|
143
|
+
"tempo_log_work",
|
|
144
|
+
"tempo_get_worklogs"
|
|
132
145
|
]
|
|
133
146
|
}
|
|
134
147
|
}
|
|
@@ -180,6 +193,9 @@ Once configured, you can ask Claude to:
|
|
|
180
193
|
- *"Show me the current sprint's progress"*
|
|
181
194
|
- *"Update the API documentation page in Confluence"*
|
|
182
195
|
- *"Search for pages about authentication in the DOCS space"*
|
|
196
|
+
- *"Log 4 hours of work on PROJ-123 for today"*
|
|
197
|
+
- *"Show me my worklogs for this week"*
|
|
198
|
+
- *"Get team worklogs for the development team"*
|
|
183
199
|
|
|
184
200
|
## Documentation
|
|
185
201
|
|
|
@@ -209,11 +225,20 @@ Once configured, you can ask Claude to:
|
|
|
209
225
|
| **Collaboration** | `confluence_add_comment`, `confluence_get_comments` |
|
|
210
226
|
| **Attachments** | `confluence_upload_attachment`, `confluence_list_attachments` |
|
|
211
227
|
|
|
228
|
+
### Tempo Tools
|
|
229
|
+
| Category | Tools |
|
|
230
|
+
|----------|-------|
|
|
231
|
+
| **Worklog Management** | `tempo_get_worklogs`, `tempo_get_worklog`, `tempo_log_work`, `tempo_update_worklog`, `tempo_delete_worklog` |
|
|
232
|
+
| **Team Tracking** | `tempo_get_team_worklogs`, `tempo_get_teams`, `tempo_get_team` |
|
|
233
|
+
| **Accounts** | `tempo_get_accounts`, `tempo_get_account` |
|
|
234
|
+
| **User Info** | `tempo_get_user_info` |
|
|
235
|
+
|
|
212
236
|
## Requirements
|
|
213
237
|
|
|
214
238
|
- Node.js 18 or higher
|
|
215
239
|
- Jira Server/Data Center or Jira Cloud instance
|
|
216
|
-
- Confluence Server/Data Center or Confluence Cloud instance
|
|
240
|
+
- Confluence Server/Data Center or Confluence Cloud instance (optional)
|
|
241
|
+
- Tempo Timesheets instance (optional)
|
|
217
242
|
- Valid API tokens or Personal Access Tokens
|
|
218
243
|
|
|
219
244
|
## Authentication
|
|
@@ -241,7 +266,7 @@ Generate a Personal Access Token (PAT):
|
|
|
241
266
|
## Development Status
|
|
242
267
|
|
|
243
268
|
- ✅ **Specification Complete** - Functional spec and tool list defined
|
|
244
|
-
- ✅ **Implementation Complete** - All
|
|
269
|
+
- ✅ **Implementation Complete** - All 39 tools implemented
|
|
245
270
|
- ✅ **Testing** - 86 tests passing
|
|
246
271
|
- ✅ **Configuration System** - Flexible .jicon.json with permissions
|
|
247
272
|
- 📦 **Publishing** - Ready for npm publish
|
|
@@ -250,13 +275,14 @@ Generate a Personal Access Token (PAT):
|
|
|
250
275
|
|
|
251
276
|
### Phase 1: Core Implementation ✅ **COMPLETED**
|
|
252
277
|
- ✅ Project setup and structure
|
|
253
|
-
- ✅ Jira API client implementation (
|
|
254
|
-
- ✅ Confluence API client implementation (
|
|
255
|
-
- ✅
|
|
278
|
+
- ✅ Jira API client implementation (15 tools)
|
|
279
|
+
- ✅ Confluence API client implementation (13 tools)
|
|
280
|
+
- ✅ Tempo API client implementation (11 tools)
|
|
281
|
+
- ✅ MCP server implementation
|
|
256
282
|
- ✅ Basic testing (86 tests, 100% pass rate)
|
|
257
283
|
- ✅ Configuration system (.jicon.json with hierarchy)
|
|
258
284
|
- ✅ Permission system (full, readonly, custom modes)
|
|
259
|
-
- ✅ Virtual actions (jira_read, jira_all, confluence_read, etc.)
|
|
285
|
+
- ✅ Virtual actions (jira_read, jira_all, confluence_read, tempo_all, etc.)
|
|
260
286
|
- ✅ Development and contributing guides
|
|
261
287
|
|
|
262
288
|
### Phase 2: Enhancement (In Progress)
|
|
@@ -297,4 +323,4 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
297
323
|
|
|
298
324
|
---
|
|
299
325
|
|
|
300
|
-
**Made with ❤️ for developers who work with Jira and
|
|
326
|
+
**Made with ❤️ for developers who work with Jira, Confluence, and Tempo**
|
package/TOOL_LIST.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
# Jira &
|
|
1
|
+
# Jira, Confluence & Tempo MCP Server - Tool List
|
|
2
2
|
|
|
3
3
|
## Overview
|
|
4
|
-
This document provides a comprehensive reference of all available tools in the Jira and
|
|
4
|
+
This document provides a comprehensive reference of all available tools in the Jira, Confluence, and Tempo MCP server.
|
|
5
5
|
|
|
6
6
|
## Summary
|
|
7
7
|
|
|
8
|
-
**Total Tools**:
|
|
8
|
+
**Total Tools**: 39
|
|
9
9
|
- **Jira Tools**: 15
|
|
10
10
|
- **Confluence Tools**: 13
|
|
11
|
+
- **Tempo Tools**: 11
|
|
12
|
+
|
|
13
|
+
**Note**: Detailed documentation for Tempo tools is available in the source code at `src/tempo/tools.ts`. Tempo provides time tracking, worklog management, team tracking, and account management capabilities.
|
|
11
14
|
|
|
12
15
|
---
|
|
13
16
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/types.d.ts
CHANGED
package/dist/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crypto512/jicon-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Model Context Protocol server for Jira and
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Model Context Protocol server for Jira, Confluence, and Tempo integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|