Senechal MCP Server
Thi sis a companion MCP server for the Senechal project
Overview
Senechal MCP Server is a Model Context Protocol (MCP) server that acts as a companion to the Senechal project, providing health data from the Senechal API to LLM applications.
To use the Senechal MCP Server, clone the repository, set up a virtual environment, install dependencies, and configure your Senechal API key and URL. You can then start the server and test it with an example client.
- Standardized interface for LLMs to access health data - Functions to fetch health data - Reusable prompts for analyzing health data
- Integrating health data into LLM applications
- Analyzing user health trends over time
- Fetching and displaying user health profiles
Add to your AI client
Use these steps to connect Senechal MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"senechal-mcp-mattjoyce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"senechal-mcp-mattjoyce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"senechal-mcp-mattjoyce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"senechal-mcp-mattjoyce": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"senechal-mcp-mattjoyce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"senechal-mcp-mattjoyce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-senechal-mcp-mattjoyce"
]
}
}
}FAQ
What is the purpose of the Senechal MCP Server?
It provides a way for LLMs to access and analyze health data from the Senechal API.
Is there a specific programming language required?
Yes, the server is built using Python.
How can I test the server?
You can run the example client provided in the repository to test the setup.