File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 43
43
44
44
* 🧪 Table bloat check, autovacuum insights
45
45
* 💽 WAL logs, checkpoints, long transaction alerts
46
- ##🔍 PostgreSQL Tool Search (All 237 Tools Included)
47
- Search across 237+ PostgreSQL tools built for this MCP server using the live search bar:
48
-
49
-
50
- ``` html
51
- <!-- Tool Search Input -->
52
- <input type =" text" id =" toolSearch" placeholder =" Search PostgreSQL Tools..." style =" width :100% ;padding :10px ;font-size :16px ;border-radius :8px ;border :1px solid #ccc ;" >
53
-
54
- <!-- Results List -->
55
- <ul id =" toolResults" style =" list-style :none ;padding-left :0 ;" ></ul >
56
-
57
- <!-- Search Script -->
58
- <script >
59
- fetch (' https://raw.githubusercontent.com/mukul975/postgres-mcp-server/main/tools/postgresql_tools_list.json' )
60
- .then (response => response .json ())
61
- .then (tools => {
62
- const input = document .getElementById (' toolSearch' );
63
- const results = document .getElementById (' toolResults' );
64
- input .addEventListener (' input' , function () {
65
- const query = this .value .toLowerCase ();
66
- const filtered = tools .filter (tool => tool .toLowerCase ().includes (query));
67
- results .innerHTML = filtered .map (tool => ` <li>${ tool} </li>` ).join (' ' );
68
- });
69
- });
70
- </script >
71
- '''
72
46
73
47
---
74
48
You can’t perform that action at this time.
0 commit comments