MCP Server with Tool, Resource, Prompt, and Sampling
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server with Tool, Resource, Prompt, and SamplingCreate a random user"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server with Tool, Resource, Prompt, and Sampling
A full-featured Model Context Protocol (MCP) server built with Node.js and TypeScript. This project demonstrates how to implement and integrate the core capabilities of MCP into a single server, communicating over stdio.
🚀 Features
This server showcases the four main pillars of the Model Context Protocol:
Resources (
users://all): Exposes local data to the LLM. It safely reads fromsrc/data/users.jsonusingnode:fsso the LLM can analyze existing user data.Tools (
create-user): Allows the LLM to take action by securely writing new user data to the local file system with strict validation viazod.Sampling (
create-random-user): Demonstrates server-to-client LLM requests. When triggered, the server uses thesampling/createMessageendpoint to ask the client LLM to generate fake user data, parses the response, and automatically saves it.Prompts: Configured to support structured prompt templates that guide the LLM's interactions with the provided tools and resources.
🛠️ Prerequisites
Node.js: v20 or higher (Tested on v24)
Package Manager:
yarnornpm
📦 Installation
Clone the repository and navigate to the directory:
cd mcp-server-samplingInstall dependencies:
yarn install(Ensure @modelcontextprotocol/sdk and zod are installed).
Initialize the data file: Ensure you have an empty or valid JSON array in src/data/users.json:
JSON:🏗️ Build & Run
Because this project uses modern ES Modules (ESM) and is strictly typed, you must build the project before connecting it to an MCP client like VS Code.
Compile the TypeScript code to JavaScript:
Bash yarn build (This outputs the compiled code to the /build directory).
(Optional) Test the server locally using the MCP Inspector:
npx @modelcontextprotocol/inspector node build/server.js🔌 VS Code Configuration
To connect this server to VS Code (or Cursor/Claude Desktop), you need to register it in your client's MCP settings.
For VS Code, update your configuration (usually found in your MCP settings file) to point to the compiled server.js file:
{
"mcp.servers": {
"my-mcp-server-sampling": {
"type": "stdio",
"command": "node",
"args": ["${workspaceFolder}/build/server.js"],
"cwd": "${workspaceFolder}"
}
}
}⚠️ Important Troubleshooting Note:
Always remember to run yarn build after making any changes to src/server.ts. VS Code executes the compiled build/server.js file, so if you skip the build step, your changes will not be reflected in the IDE.
🐛 Common Pitfalls Avoided
ESM Imports: All @modelcontextprotocol/sdk imports include the .js extension to comply with strict Node.js ESM resolution.
Stdio Corruption: Uses console.error exclusively for logging to prevent corrupting the JSON-RPC stdout stream used for client-server communication.
Dynamic JSON Loading: Uses node:fs with absolute paths rather than import statements to reliably read users.json both in development (tsx) and production (node).
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Pkaran26/mcp-server-with-tool-resource-prompt-and-sampling'
If you have feedback or need assistance with the MCP directory API, please join our Discord server