Skip to content

Commit 8ecbf99

Browse files
authored
issue #89 developer tab: LLM chat to test MCP tools (#129)
1 parent e01e332 commit 8ecbf99

12 files changed

+2336
-239
lines changed

ui/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,13 @@
1616
"@carbon/icons-react": "^11.55.0",
1717
"@carbon/layout": "^11.30.0",
1818
"@carbon/react": "^1.76.0",
19+
"@modelcontextprotocol/sdk": "^1.6.1",
20+
"axios": "^1.8.1",
21+
"highlight.js": "^11.11.1",
1922
"react": "^19.0.0",
2023
"react-dom": "^19.0.0",
2124
"react-is": "^19.0.0",
25+
"react-markdown": "^10.0.1",
2226
"react-router-dom": "^6.14.1",
2327
"sass": "^1.85.1"
2428
},

ui/src/App.scss

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
1-
@use "@carbon/layout" as *;
2-
31
.title {
4-
padding-top: $spacing-05;
5-
padding-bottom: $spacing-07;
2+
padding: 2rem 4rem;
63
}
74

85
.description {
9-
padding-bottom: $spacing-07;
10-
max-width: 600px;
6+
padding: 1rem 4rem;
7+
padding-bottom: 2rem;
8+
max-width: 600px;
9+
}
10+
11+
ul {
12+
margin: 1rem 0;
13+
list-style-type: disc;
14+
padding-left: 2rem;
15+
}
16+
17+
ol {
18+
margin: 1rem 0;
19+
list-style: decimal;
20+
padding-left: 2rem;
21+
}
22+
23+
li {
24+
margin-bottom: 5px;
1125
}

ui/src/App.tsx

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { LogoGithub, Notification, Search } from "@carbon/icons-react";
22
import {
3-
Column,
43
Content,
5-
Grid,
64
Header,
75
HeaderContainer,
86
HeaderGlobalAction,
@@ -54,6 +52,9 @@ function App() {
5452
<HeaderMenuItem as={Link} to={Links.Resources}>
5553
Resources
5654
</HeaderMenuItem>
55+
<HeaderMenuItem as={Link} to={Links.LLMChat}>
56+
LLMChat
57+
</HeaderMenuItem>
5758
</HeaderNavigation>
5859
<HeaderGlobalBar>
5960
<HeaderGlobalAction
@@ -80,12 +81,8 @@ function App() {
8081
</HeaderGlobalBar>
8182
</Header>
8283

83-
<Content id="main-content">
84-
<Grid fullWidth>
85-
<Column lg={16} md={8} sm={4}>
86-
<Outlet />
87-
</Column>
88-
</Grid>
84+
<Content id="main-content" style={{ background: "#262626", padding: 0 }}>
85+
<Outlet />
8986
</Content>
9087
</>
9188
)}

0 commit comments

Comments
 (0)