We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/donghao1393/mcp-dbutils'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# 修复导入排序问题 (I001)
echo "修复导入排序问题 (I001)..."
ruff check --select I --fix src/ tests/
# 修复未使用的导入 (F401)
echo "修复未使用的导入 (F401)..."
ruff check --select F401 --fix src/ tests/
# 修复过时的typing导入 (UP035)
echo "修复过时的typing导入 (UP035)..."
ruff check --select UP035 --fix src/ tests/
echo "导入问题修复完成!"