5 days ago
Expose Fascia-deployed Tools and Entity schemas to AI agents via MCP
Overview
MCP server for the Fascia no-code backend platform. Connects to a Fascia workspace and exposes deployed Tools as callable MCP tools with risk-level annotations, plus Entity schemas and workspace metadata as resources.
Features:
- Auto-discover all HTTP-triggered Tools in your workspace
- Risk level (Green/Yellow/Red) shown in tool descriptions
- Entity schemas and Tool specs as MCP resources
- Deterministic execution - no LLM at runtime
Install: npx -y @fascia-run/mcp-server npm: https://www.npmjs.com/package/@fascia-run/mcp-server
Server Config
{
"mcpServers": {
"fascia": {
"command": "npx",
"args": [
"-y",
"@fascia-run/mcp-server"
],
"env": {
"FASCIA_API_KEY": "your-api-key"
}
}
}
}