AgentStack
MCP verified Apache-2.0 Self-run

Kim Company Mcp

mcp-kim-company-mcp · by kim-company

MCP server implementation

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add mcp-kim-company-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-kim-company-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

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 →
Are you the author of Kim Company Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 isError flag
  • Tool callback execution

Not Implemented:

  • Image/resource content types
  • listChanged notifications
  • 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.