MCP Weather and Notes MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
npm install
npm run build
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add mcp-weather -- node "<FULL_PATH_TO_MCP_WEATHER>/dist/index.js"

Replace <FULL_PATH_TO_MCP_WEATHER>/dist/index.js with the actual folder you prepared in step 1.

README.md

A TypeScript-based MCP server for note management and weather queries.

mcp-weather、mcp-flomo for MCP Server

A Model Context Protocol server

2025-02-22 · 今天完成了第一个 MCP 服务器的开发,将写笔记能力接入了 flomo。 2025-03-09 · 本地ollama + ChatBox +mcp 实现了查询天气情况,并将结果成功返回ChatBox显示。

This is a TypeScript-based MCP server that implements a simple notes system. It demonstrates core MCP concepts by providing:

  • Resources representing text notes with URIs and metadata
  • Tools for creating new notes
  • Prompts for generating summaries of notes

Features

Resources

  • List and access notes via note:// URIs
  • Each note has a title, content and metadata
  • Plain text mime type for simple content access

Tools

  • create_note - Create new text notes
    • Takes title and content as required parameters
    • Stores note in server state

Prompts

  • summarize_notes - Generate a summary of all stored notes
    • Includes all note contents as embedded resources
    • Returns structured prompt for LLM summarization

Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "test-mcp": {
      "command": "/path/to/test-mcp/build/index.js"
    }
  }
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

Tools (1)

create_noteCreate a new text note with a title and content.

Configuration

claude_desktop_config.json
{"mcpServers": {"mcp-weather": {"command": "node", "args": ["/path/to/mcp-weather/build/index.js"]}}}

Try it

Create a new note titled 'Meeting Notes' with the content 'Discussed project timeline and budget.'
Summarize all my stored notes.
What is the current weather in Tokyo?

Frequently Asked Questions

What are the key features of MCP Weather and Notes?

List and access notes via note:// URIs. Create new text notes with titles and content. Generate summaries of all stored notes. Integration for weather queries.

What can I use MCP Weather and Notes for?

Managing personal knowledge base notes directly from an LLM interface. Summarizing collections of notes to extract key insights. Retrieving real-time weather data for context-aware AI responses.

How do I install MCP Weather and Notes?

Install MCP Weather and Notes by running: npm install && npm run build

What MCP clients work with MCP Weather and Notes?

MCP Weather and Notes works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep MCP Weather and Notes docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare