Acronyms
Acronyms used in pREST docs β REST, MCP, AI, SQL, HTTP, JWT, ACL, and related terms with short definitions and links to deeper guides.
Short definitions for acronyms used across the pREST docs. Use bare terms in most pages and link here from Related. Expand inline only when a page is meant for SEO or discovery (homepage, FAQ, βWhat is β¦?β hubs).
pREST is the product name β not an expandable acronym on this page.
How to use this page
Prefer linking this glossary (and specific anchors) from a pageβs Related section when those terms appear in prose.
Deep guides for REST, MCP, and AI stay on their canonical pages; entries below stay short.
ACL
Access Control List. In pREST, table- and user-level rules that restrict which resources clients can reach β see Permissions.
AI
Artificial intelligence. In these docs, applications and agents that use models to reason and act on tools and data. pREST is not an LLM; it exposes SQL to AI clients via MCP and REST. Deep guide: MCP over HTTP. Client setup: docs.prestd.com/ai.
API
Application Programming Interface. A contract for calling a system over a network or library boundary. pREST serves HTTP APIs (REST and MCP) generated from your database schema.
CRUD
Create, Read, Update, Delete. The four basic data operations. pREST maps them to HTTP verbs on /{database}/{schema}/{table} β see API Reference.
DDL
Data Definition Language. SQL statements that change schema (for example CREATE TABLE). pRESTβs MCP surface in v2.1.0 does not run DDL; use your database tooling or allowed REST/custom-query paths as configured.
HTTP
Hypertext Transfer Protocol. The application protocol pREST uses for REST and MCP over HTTP endpoints.
IDE
Integrated Development Environment. Editors and tools (for example Cursor) that can connect as MCP or HTTP clients to pREST.
JSON
JavaScript Object Notation. The usual request and response body format for pREST REST routes and MCP JSON-RPC payloads.
JWT
JSON Web Token. A signed token format used when pREST auth is configured β see Auth.
MCP
Model Context Protocol. An open standard for connecting AI apps and agents to tools and data. pREST exposes read-only MCP at /_mcp. Spec: modelcontextprotocol.io. Deep guide: MCP over HTTP.
REST
Representational State Transfer. An architectural style for APIs over HTTP. pREST exposes SQL tables as REST resources at /{database}/{schema}/{table}. Glossary: MDN REST. Deep guide: API Reference.
SQL
Structured Query Language. The language of relational databases. pREST turns HTTP and MCP calls into parameterized SQL against the connected engine (PostgreSQL native today).
Related
Last updated