Friday, June 20, 2025

Postgres DB: VS Code extension (POSETTE: An Event for Postgres 2025 )

Introducing Microsoft's VS Code Extension for PostgreSQL | POSETTE: An Event for Postgres 2025 - YouTube

Announcing a new IDE for PostgreSQL in VS Code from Microsoft | Microsoft Community Hub


POSETTE: An Event for Postgres 2025 - POSETTE

Schedule | POSETTE: An Event for Postgres 2025 - POSETTE

POSETTE: An Event for Postgres 2025 - YouTube


PostgreSQL - Visual Studio Marketplace


AI tool: FastMCP: OpenAPI => MCP

Welcome to FastMCP 2.0! - FastMCP
The fast, Pythonic way to build MCP servers and clients.

The Model Context Protocol (MCP) is a new, standardized way to provide context and tools to your LLMs, and FastMCP makes building MCP servers and clients simple and intuitive. Create tools, expose resources, define prompts, and more with clean, Pythonic code:

from fastmcp import FastMCPmcp = FastMCP("Demo 🚀") @mcp.tool()def add(a: int, b: int) -> int:
"""Add two numbers"""
return a + b if __name__ == "__main__":
mcp.run()