Skip to content

VS Code

The VS Code integration connects streamboard to GitHub Copilot in VS Code through agent skills or the Model Context Protocol (MCP), giving the Copilot agent access to tools for managing your flashcards.

Run the following to install agent skills into your project:

Terminal window
npx streamboard skill install

Skills are immediately available via GitHub Copilot.

Add the following to .vscode/mcp.json in your project:

{
"servers": {
"streamboard": {
"type": "http",
"url": "https://mcp.usestreamboard.com/mcp"
}
}
}
  1. Open the Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
  2. Run MCP: Add Server
  3. Enter the URL: https://mcp.usestreamboard.com/mcp

On first use, authenticate via OAuth.

ToolDescription
list_decksList all your decks
get_deckGet details of a specific deck
create_deckCreate a new deck
update_deckUpdate a deck’s title or description
delete_deckDelete a deck
ToolDescription
create_cardAdd a new card to a deck
update_cardEdit a card’s front or back
delete_cardRemove a card
ToolDescription
get_due_cardsGet cards that are due for review
submit_reviewSubmit a review result (pass/fail)
reset_cardReset a card back to Box 1
  • “What decks do I have?”
  • “Create a new deck called ‘Rust Ownership’ and add 10 cards about ownership, borrowing, and lifetimes”
  • “Show me my due cards and help me review them”
  • “How many cards are due across all my decks?”