Overview
Model Context Provider Server is a ToDo application designed for learning purposes, allowing users to manage tasks effectively.
To use the ToDo app, you can add new tasks, mark tasks as complete, and delete tasks as needed.
- User-friendly interface for task management - Ability to add, complete, and delete tasks - Built with TypeScript for robust performance
- Managing daily tasks and to-do lists
- Organizing project tasks for better workflow
- Learning task management through practical application
Add to your AI client
Use these steps to connect ToDo App 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": {
"model-context-provider-server-bizprat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}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": {
"model-context-provider-server-bizprat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"model-context-provider-server-bizprat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"model-context-provider-server-bizprat": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"model-context-provider-server-bizprat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"model-context-provider-server-bizprat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-model-context-provider-server-bizprat"
]
}
}
}FAQ
Is the Model Context Provider Server free to use?
Yes! The ToDo app is free to use for everyone.
Can I access the source code?
Yes! The source code is available on GitHub at https://github.com/bizprat/model-context-provider-server.
What programming language is used?
The application is built using TypeScript.