Install @egarcia74/warp-sql-server-mcp from npm
Install exact version 1.7.20. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact @egarcia74/warp-sql-server-mcp@1.7.20Enables secure database operations on SQL Server instances through a three-tier safety system, supporting schema exploration, query execution, performance analysis, and data export with configurable security levels from read-only to full development access
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Install exact version 1.7.20. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact @egarcia74/warp-sql-server-mcp@1.7.20| Canonical slug | warp-sql-server-mcp-4f6b6315 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | npm:@egarcia74/warp-sql-server-mcp | Repository | egarcia74/warp-sql-server-mcp |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 90% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| npm | @egarcia74/warp-sql-server-mcp | 1.7.20 | 6 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| npm@egarcia74/warp-sql-server-mcp | 1.7.20Current | Sep 5, 2026 | 16 toolsPartial · 0 resources · 0 prompts | Evidence restricted |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
No public current-version evidence is available yet.
| Tool | Category | Annotations | Risk |
|---|---|---|---|
analyze_query_performanceAnalyze query performance and provide optimization suggestionsInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "SQL query to analyze for performance optimization"
},
"database": {
"type": "string",
"description": "Database name (optional)"
}
},
"required": [
"query"
]
} | — | — | |
describe_tableGet the schema information for a specific tableInput schema{
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table to describe"
},
"database": {
"type": "string",
"description": "Database name (optional)"
},
"schema": {
"type": "string",
"description": "Schema name (optional, defaults to dbo)"
}
},
"required": [
"table_name"
]
} | — | — | |
detect_query_bottlenecksDetect and analyze query bottlenecks in the databaseInput schema{
"type": "object",
"properties": {
"database": {
"type": "string",
"description": "Database name (optional)"
},
"limit": {
"type": "number",
"description": "Maximum number of bottlenecks to return (optional, defaults to 10)"
},
"severity_filter": {
"type": "string",
"description": "Filter by severity level: LOW, MEDIUM, HIGH, CRITICAL (optional)",
"enum": [
"LOW",
"MEDIUM",
"HIGH",
"CRITICAL"
]
}
}
} | — | — | |
execute_queryExecute a SQL query on the connected SQL Server databaseInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The SQL query to execute"
},
"database": {
"type": "string",
"description": "Optional: Database name to use for this query"
}
},
"required": [
"query"
]
} | — | — | |
explain_queryGet the execution plan for a SQL query to analyze performanceInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The SQL query to analyze"
},
"database": {
"type": "string",
"description": "Optional: Database name to use for this query"
},
"include_actual_plan": {
"type": "boolean",
"description": "Include actual execution statistics (optional, defaults to false)"
}
},
"required": [
"query"
]
} | — | — | |
export_table_csvExport table data in CSV formatInput schema{
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table to export"
},
"database": {
"type": "string",
"description": "Database name (optional)"
},
"schema": {
"type": "string",
"description": "Schema name (optional, defaults to dbo)"
},
"limit": {
"type": "number",
"description": "Maximum number of rows to export (optional)"
},
"where": {
"type": "string",
"description": "WHERE clause conditions (optional)"
}
},
"required": [
"table_name"
]
} | — | — | |
get_connection_healthGet connection pool health metrics and diagnosticsInput schema{
"type": "object",
"properties": {}
} | — | — | |
get_index_recommendationsGet index recommendations for database optimizationInput schema{
"type": "object",
"properties": {
"database": {
"type": "string",
"description": "Database name (optional)"
},
"schema": {
"type": "string",
"description": "Schema name to restrict recommendations to (optional; omit to cover all schemas)"
},
"limit": {
"type": "number",
"description": "Maximum number of recommendations to return (optional, defaults to 10)"
},
"impact_threshold": {
"type": "number",
"description": "Minimum impact score threshold (0-100, optional)"
}
}
} | — | — | |
get_optimization_insightsGet comprehensive database optimization insights and health analysisInput schema{
"type": "object",
"properties": {
"database": {
"type": "string",
"description": "Database name (optional)"
},
"analysis_period": {
"type": "string",
"description": "Analysis time period: 24_HOURS, 7_DAYS, 30_DAYS (optional). RESERVED: accepted but not yet applied. The two DMV sources have different lifetimes and cannot be windowed consistently: missing-index aggregates are cumulative (reset only by a server restart or index/database changes) while query-stats rows last only while their plan stays in cache, so results reflect the lifetime of each source regardless of the value sent; the response discloses this in its analysisPeriod field.",
"enum": [
"24_HOURS",
"7_DAYS",
"30_DAYS"
]
}
}
} | — | — | |
get_performance_statsGet overall performance statistics and health summaryInput schema{
"type": "object",
"properties": {
"timeframe": {
"type": "string",
"description": "Time period for stats: \"recent\" (last 5 min), \"session\" (since startup), \"all\" (default)",
"enum": [
"recent",
"session",
"all"
]
}
}
} | — | — | |
get_query_performanceGet detailed query performance breakdown by toolInput schema{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of queries to analyze (optional, defaults to 50)"
},
"tool_filter": {
"type": "string",
"description": "Filter by specific MCP tool name (optional)"
},
"slow_only": {
"type": "boolean",
"description": "Only return slow queries (optional, defaults to false)"
}
}
} | — | — | |
get_server_infoGet MCP server configuration, status, and logging informationInput schema{
"type": "object",
"properties": {
"include_logs": {
"type": "boolean",
"description": "Include recent log entries (optional, defaults to false)"
}
}
} | — | — | |
get_table_dataGet sample data from a table with optional filtering and limitingInput schema{
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table"
},
"database": {
"type": "string",
"description": "Database name (optional)"
},
"schema": {
"type": "string",
"description": "Schema name (optional, defaults to dbo)"
},
"limit": {
"type": "integer",
"minimum": 1,
"description": "Maximum number of rows to return (optional, defaults to 100)"
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "Number of rows to skip before returning results (optional, defaults to 0). Pair with limit to page through a table. Row order is not guaranteed without an ORDER BY, so pages may overlap or skip rows on tables without a clustered index."
},
"where": {
"type": "string",
"description": "WHERE clause conditions (optional)"
}
},
"required": [
"table_name"
]
} | — | — | |
list_databasesList all databases on the SQL Server instanceInput schema{
"type": "object",
"properties": {}
} | — | — | |
list_foreign_keysList all foreign key relationships in a schemaInput schema{
"type": "object",
"properties": {
"database": {
"type": "string",
"description": "Database name (optional)"
},
"schema": {
"type": "string",
"description": "Schema name (optional, defaults to dbo)"
}
}
} | — | — | |
list_tablesList all tables in a specific databaseInput schema{
"type": "object",
"properties": {
"database": {
"type": "string",
"description": "Database name (optional, uses current database if not specified)"
},
"schema": {
"type": "string",
"description": "Schema name (optional, defaults to dbo)"
}
}
} | — | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
Install the selected package version with: npm install --save-exact @egarcia74/warp-sql-server-mcp@1.7.20
Warp SQL Server MCP Server exposed 16 tools during independent protocol observation, including analyze_query_performance, describe_table, detect_query_bottlenecks, execute_query, explain_query, export_table_csv, get_connection_health, get_index_recommendations, and others.
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.
Association is based on retained identity fields; it does not by itself prove first-party publication.
Curated product and capability guides containing this catalog record.