IEEE MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@IEEE MCP Servershow me the graph schema"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
IEEE MCP Server (Python)
A single Model Context Protocol server that exposes both Neo4j and Box to an AI agent over HTTP. It's designed to run as one Azure App Service, so the Databricks Supervisor needs only one MCP connection to reach every tool.
This is a standalone project. The existing Node
neo4j-mcp-serverand the original Box script are not affected — this combines their capabilities in one Python app for a single deployment.
Tools
Tool | Purpose |
| Run a read-only Cypher query ( |
| Run a write Cypher query ( |
| Return the graph schema — labels, relationships, properties, connections. Call first so queries use the right structure. |
| Ask a natural-language question about documents stored in Box (Box AI, via a Strands + Bedrock agent). |
Related MCP server: Neo4j GraphRAG MCP Server
Requirements
Python 3.10+
A Neo4j database (e.g. Neo4j Aura)
A Box developer app + token (developer.box.com)
AWS Bedrock access (the
query_boxmodel runs on Bedrock)
Setup
cd ieee-mcp-server
python -m venv .venv
# Windows: .venv\Scripts\activate macOS/Linux: source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # then fill in your real values
python server.py # serves on http://localhost:8000Endpoints:
GET /health— liveness checkPOST /mcp— the MCP endpoint (requiresAuthorization: Bearer <MCP_SECRET_TOKEN>)
Environment
See .env.example. Key values:
Variable | Description |
| Neo4j connection |
| Box token (expires ~60 min; use Client Credentials Grant for production) |
| Bedrock model for |
| AWS creds for Bedrock (or use an IAM role on Azure) |
| Bearer token clients must present on |
| Listen address (default |
.envis git-ignored. Never commit real credentials.
Expose to Databricks (dev)
ngrok http 8000Register the public URL (.../mcp) as a UC/MCP connection in Databricks with
Authorization: Bearer <MCP_SECRET_TOKEN>.
Deploy to Azure App Service (one app for all tools)
Push this folder to a repo.
Create a Python App Service.
Set the env vars from
.env.exampleas Application settings (leavePORTto Azure; provide AWS creds or attach a managed identity with Bedrock access).Startup command:
python -m uvicorn server:build_app --factory --host 0.0.0.0 --port 8000Point the Databricks MCP connection at
https://<app>.azurewebsites.net/mcp.
Project layout
ieee-mcp-server/
├── server.py # FastMCP app: Neo4j tools + Box tool
├── requirements.txt
├── .env.example
├── .gitignore
└── README.mdThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dhakshnamoorthi146/IEEE-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server