Getting Started with Fenceline MCP Server

The Fenceline MCP Server is an enterprise-grade AI-powered business automation platform built on Anthropic's Model Context Protocol (MCP). It provides comprehensive automation capabilities for fence contractors and construction businesses.

What is MCP?

Model Context Protocol (MCP) is a standardized way for AI applications to connect to external data sources and tools. It enables seamless integration between AI assistants and business systems.

Key Features

🏛️ Permit Automation

Automate permit applications, compliance checking, and municipal portal interactions.

🧱 Material Intelligence

AI-powered material search, pricing analysis, and inventory management.

🔍 Business Intelligence

Vector search across your business data with RAG capabilities.

🤝 Vendor Integration

Seamless supplier connections, order management, and delivery tracking.

Quick Start

  1. Get an API Key - Contact your administrator for MCP access permissions
  2. Test the Console - Use our interactive console to explore tools
  3. Integrate - Connect your applications using our API

Available Transports

Server-Sent Events (SSE)

Endpoint: https://mcp.fenceline.ai/mcp/sse

Real-time streaming communication perfect for web browsers and interactive applications.

JSON-RPC HTTP

Endpoint: https://mcp.fenceline.ai/mcp/rpc

Simple request/response pattern ideal for server-to-server integrations.

Authentication

All MCP tools require API key authentication. Include your API key in the X-API-Key header:

curl -X POST https://mcp.fenceline.ai/mcp/rpc \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

Next Steps