Markitdown MCP Plugin for VSCode #2397
Replies: 1 comment
|
The VS Code MCP connection and OCR are two separate layers here. The stock and constructs That means:
For the current release, the simplest batch workflow is to install python -m venv .venv
source .venv/bin/activate
pip install 'markitdown[all]' markitdown-ocr openai
markitdown scanned.pdf --use-plugins --llm-client openai --llm-model gpt-4o -o scanned.mdThen let the VS Code agent consume the generated Markdown. If you specifically need OCR through MCP, a small custom wrapper/fork is currently required so the server can construct Relevant implementation/docs: |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I'm attempting to use the Markitdown MCP server plugin in VSCode so that I can hoock it up to a custom agent and do batch conversion of documents. However, there is very little documentation of the MCP version in VSCode and I am not sure how to configure it properly. For instance it does not seem that it is able to convert "non-selectable text" documents or part of documents. There does not seem to be an option to configure OCR for the pluging, but I though perhaps that was a "native" feature in this environment as it is already "hooked" up to the Github Copilot in a sense. Maybe someone else is using this and can help clarify?
All reactions