fix: Shorten tool name exceeding 64 char limit

- Renamed outline_bulk_remove_users_from_collection (41 chars)
  to outline_bulk_remove_collection_users (38 chars)
- With MCP prefix (24 chars), total was 65 > 64 limit
- Bumped version to 1.3.7
- Updated all version references in source files

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 18:27:13 +00:00
parent d5b92399b9
commit 1c8f6cbab9
10 changed files with 19 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ async function main() {
JSON.stringify({
status: 'ok',
transport: 'streamable-http',
version: '1.3.1',
version: '1.3.7',
sessions: sessions.size,
stateful: STATEFUL,
tools: allTools.length
@@ -101,7 +101,7 @@ async function main() {
// Create MCP server
const server = createMcpServer(pgClient.getPool(), {
name: 'mcp-outline-http',
version: '1.3.1'
version: '1.3.7'
});
// Track session if stateful

View File

@@ -39,7 +39,7 @@ async function main() {
// Create MCP server with shared configuration
const server = createMcpServer(pgClient.getPool(), {
name: 'mcp-outline-postgresql',
version: '1.3.1'
version: '1.3.7'
});
// Connect stdio transport

View File

@@ -122,7 +122,7 @@ export function createMcpServer(
): Server {
const server = new Server({
name: config.name || 'mcp-outline-postgresql',
version: config.version || '1.3.1'
version: config.version || '1.3.7'
});
// Set capabilities (required for MCP v2.2+)

View File

@@ -263,7 +263,7 @@ const bulkAddUsersToCollection: BaseTool<{ user_ids: string[]; collection_id: st
* bulk.remove_users_from_collection - Remove multiple users from collection
*/
const bulkRemoveUsersFromCollection: BaseTool<{ user_ids: string[]; collection_id: string }> = {
name: 'outline_bulk_remove_users_from_collection',
name: 'outline_bulk_remove_collection_users',
description: 'Remove multiple users from a collection.',
inputSchema: {
type: 'object',