Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
Jira Mcp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
awing-mcp
Jira Mcp
Commits
f30bb111
Commit
f30bb111
authored
Jan 30, 2026
by
Mr.Dat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update mcp-jira-server to version 0.0.2
parent
f098b50a
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
914 additions
and
4099 deletions
+914
-4099
bun.lock
bun.lock
+897
-4095
mcp-jira-server-0.0.1.tgz
mcp-jira-server-0.0.1.tgz
+0
-0
mcp-jira-server-0.0.2.tgz
mcp-jira-server-0.0.2.tgz
+0
-0
package.json
package.json
+1
-1
src/tools/jira/create-dashboard.ts
src/tools/jira/create-dashboard.ts
+16
-3
No files found.
bun.lock
View file @
f30bb111
This diff is collapsed.
Click to expand it.
mcp-jira-server-0.0.1.tgz
deleted
100644 → 0
View file @
f098b50a
File deleted
mcp-jira-server-0.0.2.tgz
0 → 100644
View file @
f30bb111
File added
package.json
View file @
f30bb111
{
{
"name"
:
"mcp-jira-server"
,
"name"
:
"mcp-jira-server"
,
"version"
:
"0.0.
1
"
,
"version"
:
"0.0.
2
"
,
"description"
:
"MCP Server for interacting with Atlassian Jira and Confluence"
,
"description"
:
"MCP Server for interacting with Atlassian Jira and Confluence"
,
"type"
:
"module"
,
"type"
:
"module"
,
"main"
:
"dist/index.js"
,
"main"
:
"dist/index.js"
,
...
...
src/tools/jira/create-dashboard.ts
View file @
f30bb111
import
{
z
}
from
'
zod
'
;
import
{
McpServer
}
from
'
@modelcontextprotocol/sdk/server/mcp.js
'
;
import
{
McpServer
}
from
'
@modelcontextprotocol/sdk/server/mcp.js
'
;
import
{
z
}
from
'
zod
'
;
import
{
createDashboard
}
from
'
../../utils/jira-tool-api-v2.js
'
;
import
{
createDashboard
}
from
'
../../utils/jira-tool-api-v2.js
'
;
import
{
Logger
}
from
'
../../utils/logger.js
'
;
import
{
Logger
}
from
'
../../utils/logger.js
'
;
import
{
Tools
,
Config
}
from
'
../../utils/mcp-helpers.js
'
;
import
{
Config
}
from
'
../../utils/mcp-helpers.js
'
;
const
logger
=
Logger
.
getLogger
(
'
JiraTools:createDashboard
'
);
const
logger
=
Logger
.
getLogger
(
'
JiraTools:createDashboard
'
);
export
const
createDashboardSchema
=
z
.
object
({
export
const
createDashboardSchema
=
z
.
object
({
name
:
z
.
string
().
describe
(
'
Dashboard name
'
),
name
:
z
.
string
().
describe
(
'
Dashboard name
'
),
description
:
z
.
string
().
optional
().
describe
(
'
Dashboard description
'
),
description
:
z
.
string
().
optional
().
describe
(
'
Dashboard description
'
),
sharePermissions
:
z
.
array
(
z
.
any
()).
optional
().
describe
(
'
Share permissions array
'
)
sharePermissions
:
z
.
array
(
z
.
object
({
type
:
z
.
string
(),
projectId
:
z
.
number
().
optional
(),
group
:
z
.
object
({
name
:
z
.
string
()
})
.
optional
()
})
)
.
optional
()
.
describe
(
'
Share permissions array
'
)
});
});
type
CreateDashboardParams
=
z
.
infer
<
typeof
createDashboardSchema
>
;
type
CreateDashboardParams
=
z
.
infer
<
typeof
createDashboardSchema
>
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment