Install
$ agentstack add mcp-kim-company-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
MCP - Model Context Protocol Server
An Elixir implementation of the Model Context Protocol (MCP) server that communicates via Server-Sent Events over HTTP.
Installation
Add mcp to your list of dependencies in mix.exs:
def deps do
[
{:mcp, "~> 0.1.0"}
]
end
Phoenix Integration
Mount the MCP router in your Phoenix application:
# In your Phoenix router (lib/my_app_web/router.ex)
defmodule MyAppWeb.Router do
use MyAppWeb, :router
# Your existing routes...
# Mount MCP router under /mcp prefix
forward "/mcp", MCP.Router, init_callback: &MyApp.MCP.Tools.init_callback/2
end
Define your tools:
# lib/my_app/mcp/tools.ex
defmodule MyApp.MCP.Tools do
def init_callback(_session_id, _init_params) do
tools = [
%{
spec: %{
"name" => "echo",
"description" => "Echoes back the input text",
"inputSchema" => %{
"type" => "object",
"properties" => %{
"text" => %{"type" => "string", "description" => "Text to echo"}
},
"required" => ["text"]
}
},
callback: fn %{"text" => text} ->
{:ok, %{content: [%{type: "text", text: "Echo: #{text}"}]}}
end
}
]
{:ok, %{
server_info: %{name: "My App MCP Server", version: "1.0.0"},
tools: tools
}}
end
end
Your MCP server will be available at:
- SSE endpoint:
GET /mcp/ - JSON-RPC messages:
POST /mcp/message
Protocol Implementation
This implementation follows the MCP specification version 2024-11-05 with:
Core Features:
- Server-Sent Events (SSE) transport
- JSON-RPC 2.0 message protocol
- Session management with automatic cleanup
- Tool discovery via
tools/list - Tool execution via
tools/call - Protocol version negotiation
Tool Support:
- MCP-compliant tool specifications
- JSON Schema validation for input parameters
- Text content responses
- Error handling with
isErrorflag - Tool callback execution
Not Implemented:
- Image/resource content types
listChangednotifications- Advanced pagination features
License
MIT License - see LICENSE file for details.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kim-company
- Source: kim-company/mcp
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.