About Tutorial
Tutorial is an MCP server published by akhilsharmanittala in the Developer Tools category: sample mcp server tutorial. It has been installed 0 times through Conduid.
Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcp-server-tutorialThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Tutorial
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
run client and server based testing
akhil@Akhil-Nittalas-MacBook-Pro mcp-go-demo % go mod init mcp-demo go get github.com/modelcontextprotocol/go-sdk/mcp
build server
go build -o mcp-server server/main.go
run client
go run my_client.go greet --name Akhil
go run my_client.go add --a 10 --b 100
output
2026/02/08 13:38:42 {"greeting":"Hi Akhil"} 2026/02/08 13:38:42 {"sum":110}
test via UI using mcp-inspector
mcp-inspector ./mcp-server
connect via claude desktop
Install claude desktop go to claude icon on top > settings > developer > local mcp server > paste the below content in ~/.config/claude/claude_desktop_config.json
{ "mcpServers": { "akhil-mcp": { "command": "/Users/akhil/mcp-server-tutorial/mcp-server" } }, "preferences": { "coworkScheduledTasksEnabled": false, "sidebarMode": "chat" } }
reload claude desktop in chat "greet Akhil"
check the response and logs in settings> developer> view logs
README mirrored from the source repository 4 months ago. The original is authoritative.