Skip to content

Commit 98ad168

Browse files
authored
Update descriptions of consult_assistant (#8915)
1 parent 0341624 commit 98ad168

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/mcp/tools/core/consult_assistant.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@ export const consult_assistant = tool(
77
{
88
name: "consult_assistant",
99
description:
10-
"Send a question to an AI assistant specifically enhanced to answer Firebase questions.",
10+
"Access an AI assistant specialized in all aspects of **Firebase**. " +
11+
"Use this tool to get **detailed information**, **best practices**, **troubleshooting steps**, **code examples**, and **contextual help** regarding Firebase services, features, and project configuration. " +
12+
"This includes questions about Firestore, Authentication, Cloud Functions, Hosting, Storage, Analytics, and more. " +
13+
"It can also provide insights based on the **current Firebase project context**.",
1114
inputSchema: z.object({
1215
prompt: z
1316
.string()
14-
.describe("A description of what the user is trying to do or learn with Firebase."),
17+
.describe(
18+
"The specific question or task related to Firebase. " +
19+
"Be precise and include relevant details, such as the Firebase service in question, the desired outcome, or any error messages encountered. " +
20+
"Examples: 'What's the best way to deploy a React app to Firebase Hosting?', 'Explain Firebase Authentication with Google Sign-In.' , 'What are the current project settings for 'projectId'? ",
21+
),
1522
}),
1623
annotations: {
1724
title: "Consult Firebase Assistant",

0 commit comments

Comments
 (0)