Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export async function initializeTools(agent: EpicMeMCP) {
openWorldHint: false,
} satisfies ToolAnnotations,
inputSchema: entryTagIdSchema,
// 🐨 add an outputSchema here with a tag that is a tagSchema and an entry that is an entrySchema
// 🐨 add an outputSchema here with a success boolean and a tagEntry that is an entryTagSchema
},
async ({ entryId, tagId }) => {
const tag = await agent.db.getTag(tagId)
Expand Down Expand Up @@ -382,7 +382,7 @@ export async function initializeTools(agent: EpicMeMCP) {
'If set to > 0, use mock mode and this is the mock wait time in milliseconds',
),
},
// 🐨 add an outputSchema here with a video that is a videoSchema
// 🐨 add an outputSchema here with a video that includes videoUri (you're on your own here!)
},
async ({ year = new Date().getFullYear(), mockTime }) => {
const entries = await agent.db.getEntries()
Expand Down
Loading