Docs menu
DocsMakerSNS AI DevelopmentMCP Protocol Specification

MCP Protocol Specification

Last updated: 2024-12-10Edit this page

The Model Context Protocol (MCP) is the key interface MakerSNS AI uses to connect with external tools and business systems. Through MCP, agents can read local data, call private APIs or run controlled tools.

Note: The MCP Server must run in an HTTPS-enabled secure environment, or use local localhost for debugging.

Configuration Example (manifest.json)

Plugins can declare UI, tool capabilities and permissions via the manifest:

{
  "id": "my-database-connector",
  "name": "My Database Connector",
  "version": "1.0.0",
  "type": "Plugin",
  "capabilities": ["mcp", "agent-tool"],
  "permissionsRequired": ["mcp:read"]
}