My First Mcp
Create and manage a Model Context Protocol server to integrate various tools and resources, enhancing applications with real-world data and actions. Supports TypeScript and modern JavaScript tooling for streamlined development.
Author

JHSeo-git
MIT License
Quick Info
Tools 1
Last Updated 28/5/2025
Actions
Tags
tools developer development developer tools tools integrations tools tools
my-first-mcp
Running MCP
node
{
"mcpServers": {
"my-first-mcp": {
"command": "node",
"args": ["/absolute/path/to/your/dist/index.js"]
}
}
}
docker
{
"mcpServers": {
"my-first-mcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "my-first-mcp"]
}
}
}
Runner
stdio
docker build -t my-first-mcp-stdio .
# docker build --platform linux/amd64 -t aoaiaiplayground.azurecr.io/mcp/my-first-mcp-stdio .
# docker buildx build --platform linux/amd64,linux/arm64 -t aoaiaiplayground.azurecr.io/mcp/my-first-mcp-stdio --push .
docker run -i --rm my-first-mcp-stdio
stdio -> sse
docker build -t my-first-mcp-gateway -f Dockerfile.sse .
docker run --rm -p 8181:8000 my-first-mcp-gateway