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., "@Starter MCP Servershow me how to configure the server in mcp.json"
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.
starter-mcp-server
description
Dev
Running the Client
pnpm build
# run client
node dist/index.mjs path/to/build/index.js # node server
Config MCP Servers
mcp.json
{
"mcpServers": {
"starter": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/PARENT/FOLDER/starter/dist/index.mjs"]
}
}
}
Use MCP Inspector to debug
pnpx @modelcontextprotocol/inspector node dist/index.mjs
Release
# first
pnpm publish
# future release
pnpm run release