Tuesday, May 27, 2025

AI MCP tools: context7

upstash/context7: Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors

Context7 MCP pulls up-to-date, version-specific documentation and code examples straight from the source — and places them directly into your prompt.

example:

Add use context7 to your prompt in Cursor:
Create a basic Next.js project with app router. use context7

VS Code settings: 

> npm install -g @upstash/context7-mcp

{
  "mcpServers": {
    "context7": {
      "command": "npx",
      "args": ["-y", "@upstash/context7-mcp"]
    }
  }
}

punkpeye/awesome-mcp-servers: A collection of MCP servers.

MCP is an open protocol that enables AI models to securely interact with local and remote resources through standardized server implementations. This list focuses on production-ready and experimental MCP servers that extend AI capabilities through file access, database connections, API integrations, and other contextual services.

postgres db + js tool: pg-promise

not an ORM tool, but SQL helper tool; could be useful for some use-cases

vitaly-t/pg-promise: PostgreSQL interface for Node.js @GitHub

"At its inception in 2015, this library was only adding promises to the base driver, hence the name pg-promise. And while the original name was kept, the library's functionality was vastly extended, with promises now being only its tiny part."
  • Automatic connections
  • Automatic transactions
  • Powerful query-formatting engine + query generation
  • Declarative approach to handling query results
  • Global events reporting for central handling
  • Extensive support for external SQL files
  • Support for all promise libraries