Skip to content

Commit e72df68

Browse files
authored
Update README.md
1 parent 6408d6f commit e72df68

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

README.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,32 +43,6 @@
4343

4444
* 🧪 Table bloat check, autovacuum insights
4545
* 💽 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-
'''
7246

7347
---
7448

0 commit comments

Comments
 (0)