π οΈ Simple MCP Example with Claude and a Local JSON HTTP Server
About
Simple MCP server using Claude to interact with a local JSON server
Details
- Author
- sunmer
- Downloads
- 201
- Categories
- AI
Jump to
- Uses MCP to connect Claude to a local JSON server
- Two MCP tools appear after configuration
- Supports CRUDβstyle prompts (get, insert)
- Works with Claude for MacOS desktop
- Requires Node.js and npm dependencies
- Includes a testing inspector command
Install dependencies with npm install, then run npm run mock-api and npm run mcp-server. Edit the claude_desktop_config.json file to add the MCP server configuration, restart Claude, and prompt it with commands like "get all posts" or "insert a post with id 500, title 'created by claude' and views 123".
π οΈ Simple MCP Example with Claude and a Local JSON HTTP Server
This guide walks you through a basic setup where you use Claude (MacOS desktop) to interact with a local mock JSON server via MCP (Model-Computer Protocol).
---
π§° Prerequisites
- Node.js installed
- Claude for MacOS (download from Anthropic)
- Basic understanding of how local servers and Claude MCP tools work
---
π Step-by-Step Setup
1. Install Dependencies
In the root of your project, install the required packages:npm install
npm run mock-api
npm run mcp-server
`
Edit the claude_desktop_config.json file (usually found in ~/.claude/ or the app's internal config folder), and add your MCP server config:
{
"mcpServers": {
"json-chat": {
"command": "node",
"args": ["/absolute/path/to/mcp-example/dist/index.js"]
}
}
}
Restart Claude
Once restarted, you should see two new MCP tools appear below the input bar in Claude, each marked with a π οΈ hammer icon:
- Try prompting Claude with something like:
> "insert a post with id 500, title "created by claude" and views 123"
Claude will use the MCP tools you've configured to send actual requests to your local mock server.
Make sure you're running the JSON server, MCP server when you prompt Claude.
Testing
Runnpx @modelcontextprotocol/inspector node build/index.js
You should then see all of the available resources at http://127.0.0.1:6274/#resources
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.
