Current section

Files

Jump to
Raw

mix.exs

defmodule Phantom.MixProject do
use Mix.Project
def project do
[
aliases: aliases(),
app: :phantom_mcp,
description: "Elixir MCP (Model Context Protocol) server library with Plug",
deps: deps(),
docs: docs(),
elixir: "~> 1.18",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
start_permanent: Mix.env() == :prod,
version: "0.3.2",
source_url: "https://github.com/dbernheisel/phantom_mcp"
]
end
def cli do
[
preferred_envs: [format: :test, dialyzer: :test]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:plug, "~> 1.0"},
{:telemetry, "~> 1.0"},
{:phoenix_pubsub, "~> 2.0", optional: true},
{:uuidv7, "~> 1.0"},
## Test
{:phoenix, "~> 1.7", only: [:test]},
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
defp package do
[
name: :phantom_mcp,
maintainers: ["David Bernheisel"],
licenses: ["MIT"],
links: %{
"MCP Specification" => "https://modelcontextprotocol.io",
"MCP Inspector" => "https://github.com/modelcontextprotocol/inspector",
"GitHub" => "https://github.com/dbernheisel/phantom_mcp"
}
]
end
@mermaidjs """
<script defer src="https://cdn.jsdelivr.net/npm/mermaid@10.2.3/dist/mermaid.min.js"></script>
<script>
let initialized = false;
window.addEventListener("exdoc:loaded", () => {
if (!initialized) { mermaid.initialize({
startOnLoad: false,
theme: document.body.className.includes("dark") ? "dark" : "default"
});
initialized = true;
}
let id = 0;
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
const preEl = codeEl.parentElement;
const graphDefinition = codeEl.textContent;
const graphEl = document.createElement("div");
const graphId = "mermaid-graph-" + id++;
mermaid.render(graphId, graphDefinition).then(({svg, bindFunctions}) => {
graphEl.innerHTML = svg;
bindFunctions?.(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
defp docs do
[
main: "Phantom",
extras: ~w[CHANGELOG.md],
before_closing_body_tag: %{html: @mermaidjs}
]
end
defp aliases do
[]
end
end