Skip to content

NautilusOSS/EmptyMCP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

empty-mcp

A minimal MCP (Model Context Protocol) server scaffold using stdio transport.

Setup

npm install

Usage

node index.js

Adding to a Client

Add the following to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "empty-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/empty-mcp/index.js"]
    }
  }
}

Adding Tools

Register tools on the server before it connects to the transport:

server.tool("hello", { name: z.string() }, async ({ name }) => ({
  content: [{ type: "text", text: `Hello, ${name}!` }]
}));

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors