You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -85,7 +85,7 @@ The application combines three key components:
85
85
86
86
## Model Context Protocol (MCP)
87
87
88
-
This application implements a complete MCP server following the [MCP specification](https://modelcontextprotocol.io/introduction). The MCP server exposes todo management functionality as tools that AI agents can discover and use.
88
+
This application implements a complete MCP server following the [MCP specification](https://modelcontextprotocol.io/introduction). The MCP server exposes to-do management functionality as tools that AI agents can discover and use.
89
89
90
90
### MCP Documentation and Resources
91
91
@@ -107,10 +107,10 @@ See **[Connect to Model Context Protocol servers (preview)](https://learn.micros
107
107
108
108
The application exposes these tools for AI agents:
109
109
110
-
-`create_todo` - Create new todos with title, description, and priority
111
-
-`list_todos` - List all todos or filter by completion status
112
-
-`update_todo` - Update existing todo properties
113
-
-`delete_todo` - Delete todos by ID
110
+
-`create_todo` - Create new to-dos with title, description, and priority
111
+
-`list_todos` - List all to-dos or filter by completion status
112
+
-`update_todo` - Update existing to-do properties
113
+
-`delete_todo` - Delete to-dos by ID
114
114
-`mark_todo_complete` - Toggle completion status
115
115
116
116
### Testing MCP Locally
@@ -130,15 +130,15 @@ curl -X POST http://localhost:8000/mcp/stream \
Copy file name to clipboardExpand all lines: templates/chat.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ <h1>App Service MCP To-do List App</h1>
14
14
<p>With chat powered by AI Foundry Agent MCP server integration</p>
15
15
</div>
16
16
17
-
<!-- Navigation -->
17
+
<!-- Navigation Tabs -->
18
18
<divclass="navigation-tabs">
19
-
<ahref="/" class="nav-tab">Todo List</a>
19
+
<ahref="/" class="nav-tab">To-do List</a>
20
20
<ahref="/chat" class="nav-tab active">AI Chat</a>
21
21
</div>
22
22
@@ -25,7 +25,7 @@ <h1>App Service MCP To-do List App</h1>
25
25
<divclass="chat-messages" id="chatMessages">
26
26
<divclass="message assistant-message">
27
27
<divclass="message-content">
28
-
<strong>Agent:</strong> Hi! I'm your AI agent powered by Azure AI Foundry with MCP integration. I can help you manage your todos through natural language. Try asking me to "create a new todo" or "show me all my todos"!
28
+
<strong>agent:</strong> Hi! I'm your AI agent powered by Azure AI Foundry with MCP integration. I can help you manage your to-dos through natural language. Try asking me to "create a new to-do" or "show me all my to-dos"!
29
29
</div>
30
30
<divclass="message-time" id="initialTime"></div>
31
31
</div>
@@ -37,7 +37,7 @@ <h1>App Service MCP To-do List App</h1>
37
37
<input
38
38
type="text"
39
39
id="chatInput"
40
-
placeholder="Ask me to manage your todos... (e.g., 'Create a high priority todo to finish the project')"
40
+
placeholder="Ask me to manage your to-dos... (e.g., 'Create a high priority to-do to finish the project')"
0 commit comments