We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scenic-contrib/scenic_mcp_experimental'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
defmodule ScenicMcp.Application do
@moduledoc false
use Application
require Logger
# HERE update the docs Claude
@port 9999
@impl true
def start(_type, _args) do
Logger.info("Starting ScenicMCP Application...")
children = [{ScenicMcp.Server, port: @port}]
opts = [strategy: :one_for_one, name: ScenicMcp.Supervisor]
Supervisor.start_link(children, opts)
end
end