File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,15 +84,35 @@ To demo search output:
8484python vc-database/vcdb.py --demo-search add numbers
8585```
8686
87- ### 2) Run the JavaScript interpreter smoke test
87+ ### 2) Start the MCP server
88+
89+ Requires the ` mcp ` Python package (` pip install mcp ` ). From the repo root:
90+
91+ ``` bash
92+ python vc-database/mcp_server.py
93+ ```
94+
95+ This starts a stdio MCP server exposing the vectorizer to LLM agents. To connect it to an MCP client, add the following to your MCP server config:
96+
97+ ``` json
98+ {
99+ "vc-database" : {
100+ "command" : " python" ,
101+ "args" : [" vc-database/mcp_server.py" ],
102+ "env" : {}
103+ }
104+ }
105+ ```
106+
107+ ### 3) Run the JavaScript interpreter smoke test
88108
89109From the repo root:
90110
91111``` bash
92112node vcs-js/smoke-test.js
93113```
94114
95- ### 3 ) (Optional) Run the browser demo
115+ ### 4 ) (Optional) Run the browser demo
96116
97117Open ` vcs-js/index.html ` in a browser.
98118
You can’t perform that action at this time.
0 commit comments