MCP Observer Server
A file monitoring server that tracks filesystem events and provides real-time notifications to AI assistants, enabling them to automatically respond to file changes without manual updates.
README
mcp-observer-server
mcp-observer-server is an MCP (Model Context Protocol) server that monitors file system events and provides real-time notifications to MCP clients. It acts as a (more bi-directional) bridge between your local file system and AI assistants like Claude Inspector, enabling them to respond to file changes automatically.
NOTE: This is a demo/POC of a file monitoring MCP server that I'm working on. I'm seeing a lot of questions/comments/Issues/Discussions about this kind of thing, so I wanted to post this minimal implementation to share my approach.
Context
The MCP protocol defines the notion of a resource subscription, wherein a client can request to be notified of any changes to a resource, and the server can choose to send notifications. Here is the flow diagram:

The protocol says the client should then send a read request back to the server to read the changes. (All of this is optional, by the way). But, I find this a bit cumbersome, and involves an extra trip, and I'd rather have my resource-update notification describe the change as well. Fortunately, the SDK offers a meta/_meta field and you can pretty much send whatever you want. So I might want to send the number of lines changed, a diff of the changes, who knows what. I haven't implemented that in this demo, right now I'm just sending the timestamp. (I basically ripped everything out from the server except the minimum POC.) Also, it's just running on stdio transport, nothing fancy.
NOTE!!! I haven't tested this with any "real" MCP clients yet - my understanding is that very view clients actually support resource subscriptions, since it's optional anyway. However, fortunately Inspector is a very good client, and you can use that to test this server.
DEMO INSTRUCTIONS:
- Clone the repository.
- Install the dependencies using
uv(or, some other way I suppose). - Run the server using
make start(usesuv) or runnpx @modelcontextprotocol/inspector uv run src/mcp_observer_server/server.py. - Open the Inspector client and connect using stdio, no configuration needed.
- Use the
subscribetool to monitor a directory or file, (alternatively, you can run "List Resources", click a resource, and then click "Subscribe" button to subscribe to it). - By default, the server will expose a file called
watched.txtinsrc/mcp_observer_server/watched.txt(the file is .gitignored, so you have to create it), but you can subscribe to other files as well. You can subscribe this file with thesubscribe_defaulttool. - Modify the
watched.txtfile (or whatever file you subscribed to), and you should see a server notification appear in the bottom-right panel of the Inspector. This is the POC established.
DEMO VISUALIZATION
- Start the server and connect with Inspector:

- List the default resources:

- List the tools:

- Subscribe to the default file:

- Modify the file:

- See the notification appear:

🎉
Server Description
The MCP Observer Server tracks file and directory changes on your system, allowing MCP clients to subscribe to these events and take action when files are created, modified, deleted, or moved (current demo handles modification event). This server implements the full Model Context Protocol specification, providing:
- Real-time file monitoring: Using the Watchdog library for efficient file system observation
- Subscription management: Create, list, and cancel monitoring subscriptions for any path
- Change history: Maintains a log of recent changes for each subscription (omitted in demo)
- File and directory access: Read file contents and directory listings through MCP resources
- Stateless design: Clients control what happens in response to file changes
Key Features
- Subscribe to changes in specific files, directories, or entire repositories
- Filter events by file patterns or event types (omitted in demo)
- Query recent changes to see what files were affected (omitted in demo)
- Access file contents via resource endpoints
- Lightweight and efficient implementation with minimal dependencies
- Simple integration with any MCP-compatible client (...that support resource subscriptions)
Practical Applications
The main pain point I am trying to solve is that unless Claude Code, e.g., touches a file and writes the change to it itself, it has no idea what is going on in your repo/project. (You know those notifications - "File changeed since last read"?) Having a client or coding assistant that is actually monitoring what you're doing in your project and you don't have to delegate every task to Claude just so that it knows that it happens, seems tremendously useful to me. Some practical applications include:
- Automated documentation updates: Keep documentation in sync with code changes - you update some code, Claude is notified of the change, and it pro-actively checks or updates the doc-strings, etc.
- Live code reviews: Get real-time feedback on code changes as you work, catching spelling errors, type errors, etc., giving advice, true pair programming.
- Testing automation: Run tests when relevant files are modified.
- AI assistance: Enable AI tools to respond to file changes automatically.
- Git commit automation: Do you forget to commit frequently enough? Claude can watch your changes and suggest (or perform) commit actions more frequently.
Current Implementation Design
The server implementation features a streamlined architecture that prioritizes simplicity, reliability, and maintainability.
Architecture Highlights
-
Simplified Structure
- Focused implementation (~170 lines of code)
- Consolidated functionality into a small set of core components
- Clean function-based design that leverages the MCP SDK directly
- High readability and maintainability
-
Efficient State Management
- Simple dictionary structure maps paths to client sessions
- Uses a
watcheddictionary for direct path-to-session mapping - Minimal state tracking with clear data flow
- Avoids redundant data structures
-
MCP Protocol Integration
- Direct use of MCP SDK function decorators
- Clean resource URI handling
- Simplified server initialization with proper capability configuration
- Direct notification delivery system
-
Event Processing
- Streamlined Watchdog event handler implementation
- Direct event-to-notification path
- Thread-safe communication via
call_soon_threadsafe - Efficient event filtering
-
Notification System
- Direct use of MCP notification primitives
- Reliable delivery with proper error handling
- Accurate UTC timestamp handling
- Clean URI formatting
Core Components
-
Data Structure
- Single global dictionary
watchedmaps Path objects to sets of ServerSession objects - Each path entry contains the set of sessions subscribed to that path
- Single global dictionary
-
Tool API
- Two essential tools:
subscribeandunsubscribe - Simple path parameter for straightforward subscription management
- Clean error handling and path validation
- Two essential tools:
-
Resource Handling
- File URIs directly exposed through resource listing
- Path resolution and validation
- Text content reading for files
-
Event Processing
- Watcher class extends FileSystemEventHandler
- Processes modified events directly
- Thread-safe notification dispatching
- Path relativity handling for nested paths
-
Notification Delivery
- ServerNotification creation and sending
- Event metadata with timestamps
- Clean URI formatting
The implementation achieves a good balance between functionality and simplicity, resulting in a reliable and maintainable codebase.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.