Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
70246f3
Add session management infrastructure for Claude development
olaservo Nov 30, 2025
7b24585
Simplify tracking: GitHub issues as source of truth
olaservo Nov 30, 2025
bf723f3
Add TODO.md for small implementation tasks
olaservo Nov 30, 2025
c1ea211
Update session progress notes
olaservo Nov 30, 2025
824f086
Add Playwright testing infrastructure
olaservo Nov 30, 2025
c50604e
Update progress notes with Playwright setup
olaservo Nov 30, 2025
7fbff2d
Remove v2-features.json from git tracking
olaservo Nov 30, 2025
01fc1e9
Prepare for prototype session
olaservo Nov 30, 2025
92134d5
Vote for Express and Pino in tech stack decisions
olaservo Nov 30, 2025
b36fff4
Add v2_ux.md specification with detailed UX patterns
olaservo Nov 30, 2025
17c6dea
Add full MCP 2025-11-25 protocol coverage to v2_ux.md
olaservo Nov 30, 2025
0c054a5
Add Mantine prototype with full navigation shell
olaservo Nov 30, 2025
def9016
Fix unused import errors in Mantine prototype
olaservo Nov 30, 2025
52438dd
Update TODO and progress after prototype session
olaservo Nov 30, 2025
ff596b9
Merge updated TODO and progress from prototype branch
olaservo Nov 30, 2025
cafa7c7
Update tracking files after Session 1 (Spec Alignment)
olaservo Nov 30, 2025
65e4461
Add session resume/end workflows to progress file
olaservo Nov 30, 2025
39ebdf0
Update tracking after Session 2
olaservo Nov 30, 2025
7e55d49
docs: sync tracking files after Session 3
olaservo Nov 30, 2025
19ad633
Port spec alignment features to Mantine prototype
olaservo Nov 30, 2025
2c79f32
Update progress notes after Mantine port session
olaservo Nov 30, 2025
fcb3965
Update TODO after Mantine port session
olaservo Nov 30, 2025
70c14cc
Port 3 modals to Mantine prototype
olaservo Nov 30, 2025
8c00ad5
Update TODO after modal port session
olaservo Nov 30, 2025
aa78bea
Sync progress tracking from mantine branch
olaservo Nov 30, 2025
641a1bf
docs: Sync Playwright testing results and session progress
olaservo Nov 30, 2025
e6c69e7
docs: Sync Playwright testing results and session progress
olaservo Nov 30, 2025
14385e4
Update .gitignore to include .vite directory
olaservo Nov 30, 2025
704e9e1
docs: update session tracking with client feature modals progress
olaservo Nov 30, 2025
3a87c68
docs: update session tracking with client feature modals progress
olaservo Nov 30, 2025
43d8fb7
feat(modals): port client feature modals to Mantine
olaservo Nov 30, 2025
20e2934
docs: update session tracking after Mantine modal port
olaservo Nov 30, 2025
7f8ab31
docs: update session tracking after Mantine modal port
olaservo Nov 30, 2025
6aba7d8
fix: wire up Add Server menu items to open modals
olaservo Dec 1, 2025
bc3cc3c
feat: make connected server name clickable to navigate to tools
olaservo Dec 1, 2025
21f25f9
fix: pass server data via route state and remove progress bar
olaservo Dec 2, 2025
2a5cf12
docs: add ISSUES.md with 19 UI work items for V2
olaservo Dec 8, 2025
d059d24
Merge v2/feature/tech-stack-votes into v2/feature/prototype
olaservo Dec 8, 2025
b947166
docs: update progress notes with merge and branch state
olaservo Dec 8, 2025
70013c9
Merge branch 'v2/main' of https://github.com/modelcontextprotocol/ins…
olaservo Dec 13, 2025
59bd790
chore: remove outdated documentation files (ISSUES.md, TODO.md, claud…
olaservo Dec 13, 2025
e85feda
Merge v2/feature/prototype into v2/prototype/mantine
olaservo Dec 13, 2025
2fb2405
feat(mantine): create ServerSettingsModal (UI-4)
olaservo Dec 13, 2025
b2c7826
feat(mantine): create OAuthDebuggerModal (UI-6)
olaservo Dec 13, 2025
0e25f65
feat(mantine): create ExperimentalFeaturesPanel (UI-19)
olaservo Dec 13, 2025
1613067
feat(mantine): add Clone, error state, Settings, OAuth buttons to Ser…
olaservo Dec 13, 2025
3f66c6d
feat(mantine): update History page (UI-8,9,10,11)
olaservo Dec 13, 2025
5dda860
feat(mantine): update Resources page with accordion pattern (UI-13)
olaservo Dec 13, 2025
8a3e005
feat(mantine): add autocomplete placeholder to Tools page (UI-12)
olaservo Dec 13, 2025
2d49d19
feat(mantine): add autocomplete placeholder to Prompts page (UI-14)
olaservo Dec 13, 2025
0fc7c00
feat(mantine): add export functionality to Logs page (UI-15)
olaservo Dec 13, 2025
45b93d5
feat(mantine): add clear history button with confirmation to Tasks (U…
olaservo Dec 13, 2025
f6cd3a6
feat(mantine): add toast notification system with doc links (UI-17,18)
olaservo Dec 13, 2025
73d939b
feat(mantine): add light/dark/system theme toggle
olaservo Dec 14, 2025
4401b2b
refactor(mantine): quality pass - consolidate mocks, extract Annotati…
olaservo Dec 14, 2025
4355af4
fix(mantine): add all 8 RFC 5424 log levels to Logs page
olaservo Dec 14, 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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@
node_modules
dist
.env
.vite

# Generated cache file (synced from GitHub issues)
v2-features.json

# Playwright test artifacts
test-results/
playwright-report/
playwright/.cache/
23 changes: 23 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MCP Inspector</title>
<script>
(function() {
try {
var cs = localStorage.getItem('mantine-color-scheme-value');
if (cs === 'auto' || !cs) {
cs = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
document.documentElement.setAttribute('data-mantine-color-scheme', cs);
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading