Skip to content

Commit 0e7f0ee

Browse files
committed
updated the readme to docs for easier following
1 parent a91d20e commit 0e7f0ee

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

docs/flask-mcp-compare.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Flask MCP Server Comparison
2+
3+
## Setting up the Environment
4+
5+
Execute the below commands on your terminal /
6+
command prompt
7+
8+
### Pre Requisites:
9+
10+
- Python
11+
- Pip
12+
- Git
13+
- Anthropic API key
14+
15+
Update the anthropic API key in the .env file
16+
17+
### Steps to execute:
18+
19+
1. Clone the repo
20+
21+
git clone
22+
https://github.com/insightbuilder/codeai_fusion.git
23+
24+
2. Change into flask-mcp-compare folder:
25+
26+
cd flask-mcp-compare
27+
28+
3. Create virtual environment
29+
30+
python -m venv .venv
31+
32+
Ensure the .venv folder is created. Add that
33+
folder to your .gitignore
34+
35+
4. Activate virtual environment
36+
37+
source .venv/bin/activate in linux
38+
.venv\Scripts\activate in windows
39+
40+
5. Install requirements
41+
42+
pip install -r requirements.txt
43+
44+
#### Running the Flask App
45+
46+
python flaskapp.py
47+
48+
#### Running the MCP Server
49+
50+
python mcpclient.py mcpserver.py

0 commit comments

Comments
 (0)