Skip to content

Feat/adding graph to mcp #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Aug 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
78ee948
WiP
Hubert-Szczepanski-SAP Jul 8, 2025
a0d93b0
working graph
Hubert-Szczepanski-SAP Jul 30, 2025
c56bc06
adding missing references
Hubert-Szczepanski-SAP Jul 30, 2025
822c966
Fixing according to copilot review
Hubert-Szczepanski-SAP Jul 30, 2025
9669463
removing unused providers
Hubert-Szczepanski-SAP Jul 30, 2025
940c0c5
linter issues + adding command to package.json
Hubert-Szczepanski-SAP Jul 30, 2025
1b62db8
fixing tests after removing providers
Hubert-Szczepanski-SAP Jul 30, 2025
25eb7d3
adding smaller yaml button
Hubert-Szczepanski-SAP Jul 30, 2025
487c72a
temporary fix - can be deployed
Hubert-Szczepanski-SAP Jul 30, 2025
ce602d6
moving yalm viewer outside of Reactflow to fix bug
Hubert-Szczepanski-SAP Jul 31, 2025
8933543
Merge branch 'main' into feat/adding-graphs-to-mcp
lucasgoral Aug 1, 2025
10c515b
PR comments
Hubert-Szczepanski-SAP Aug 4, 2025
6e1d5c5
linter
Hubert-Szczepanski-SAP Aug 4, 2025
2531e39
Merge branch 'feat/adding-graphs-to-mcp' of https://github.com/openmc…
Hubert-Szczepanski-SAP Aug 4, 2025
3fd97f2
react flow version upgrade + css changes
Hubert-Szczepanski-SAP Aug 4, 2025
3c6d6e3
linting
Hubert-Szczepanski-SAP Aug 4, 2025
0500962
Merge branch 'main' into feat/adding-graphs-to-mcp
Hubert-Szczepanski-SAP Aug 4, 2025
39abbe5
moving logic to hook
Hubert-Szczepanski-SAP Aug 4, 2025
45a61e9
Adding error handling for useGraph
Hubert-Szczepanski-SAP Aug 5, 2025
2198689
Adding radio button from UI5 + linting
Hubert-Szczepanski-SAP Aug 5, 2025
2315123
memo + removing as string
Hubert-Szczepanski-SAP Aug 5, 2025
10e657f
PR changes
Hubert-Szczepanski-SAP Aug 5, 2025
cd52c2c
changing to Map from Record
Hubert-Szczepanski-SAP Aug 5, 2025
833ea18
linter
Hubert-Szczepanski-SAP Aug 5, 2025
bcb8c6d
removing unused tests after removing configName check
Hubert-Szczepanski-SAP Aug 5, 2025
d9ab2b8
Merge branch 'main' into feat/adding-graphs-to-mcp
Hubert-Szczepanski-SAP Aug 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
250 changes: 249 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"build": "tsc && npm run build:server && vite build",
"build:server": "tsc -p tsconfig.server.json",
"lint": "eslint ./src --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint ./src --fix",
"preview": "vite preview",
"test:vi": "vitest",
"test:cy": "cypress run --component --browser chrome",
Expand Down Expand Up @@ -39,7 +40,9 @@
"@ui5/webcomponents-fiori": "^2.7.2",
"@ui5/webcomponents-icons": "^2.7.2",
"@ui5/webcomponents-react": "^2.7.2",
"@xyflow/react": "^12.8.2",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dotenv": "^17.0.0",
"fastify": "^5.3.3",
"fastify-plugin": "^5.0.1",
Expand All @@ -65,6 +68,7 @@
"@eslint/js": "^9.22.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/client-preset": "^4.8.0",
"@types/dagre": "^0.7.53",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
Expand Down
14 changes: 13 additions & 1 deletion public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@
"componentsTitle": "Components",
"crossplaneTitle": "Crossplane",
"gitOpsTitle": "GitOps",
"landscapersTitle": "Landscapers"
"landscapersTitle": "Landscapers",
"graphTitle": "Graph"
},
"ToastContext": {
"errorMessage": "useToast must be used within a ToastProvider"
Expand Down Expand Up @@ -281,6 +282,17 @@
"tableHeaderInstalled": "Installed",
"tableHeaderHealthy": "Healthy"
},
"Graphs": {
"colorsProvider": "Provider",
"colorsProviderConfig": "Provider Config",
"colorizedTitle": "Colorized Graph by: ",
"loadingError": "Error loading graph data",
"loadingGraph": "Loading graph data...",
"noResources": "No resources to display"
},
"GraphsLegend": {
"title": "Legend"
},
"validationErrors": {
"required": "This field is required!",
"properFormatting": "Use A-Z, a-z, 0-9, hyphen (-), and period (.), but note that whitespace (spaces, tabs, etc.) is not allowed for proper compatibility.",
Expand Down
Loading
Loading