siebel-mcp-gateway
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., "@siebel-mcp-gatewaysearch accounts named Acme in Chicago"
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.
Siebel MCP Gateway
Exposes the Oracle Siebel REST API as MCP tools over streamable HTTP, so an agentic client can query/create/update/delete Siebel records and pull the object catalog without holding Siebel credentials itself.
Mock mode models a synthetic healthcare-referral demo schema (patient → community/hospital referral → Form 17 commitment → treatment history), built to faithfully carry a set of documented, deliberate data-quality findings rather than smooth them over — duplicate patient records across two orgs, a status field that actually holds urgency, a script that silently overrides a Workflow's stated limits, two "visits remaining" fields that drift apart. All data is synthetic.
Stack
Python 3.12+, the official mcp SDK (MCPServer, the current name for what
used to be called FastMCP in older SDK versions), httpx for outbound
Siebel calls, uvicorn as the ASGI server.
Related MCP server: MuleSoft Code MCP
Local run
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
# Fill in .env, or for a first run without a live Siebel instance:
# MOCK_MODE=true
# MCP_GATEWAY_TOKEN=<any string you'll also give your client>
MOCK_MODE=true MCP_GATEWAY_TOKEN=dev-token \
uvicorn app.server:app --host 0.0.0.0 --port 8000Health check: curl http://localhost:8000/healthz → {"status":"ok"} (no
auth required, so platform health checkers work).
MCP endpoint: http://localhost:8000/mcp — every request needs
Authorization: Bearer <MCP_GATEWAY_TOKEN>, since the endpoint itself has no
other access control once deployed publicly.
Tests
python3 -m pytest -vAll tests run against the in-memory mock store or a mocked HTTP transport — no network calls, no live Siebel instance required.
Deploying to Render
Push this repo to GitHub.
Grant Render access to the repo first, if it's not already connected. Render's GitHub App only sees repos it's been explicitly given access to — a brand-new repo won't show up in Render's repo picker just because you own it. Go to github.com/settings/installations → find Render → Configure → either switch to "All repositories" or add this repo to the allowed list → Save. Only then will it appear back in Render's connect screen.
In the Render dashboard: New → Blueprint (not "Web Service" — this repo has a
render.yaml, and Blueprint is what reads it). Connect the repo, confirm branchmainand the defaultrender.yamlpath.Render shows a form for every env var marked
sync: falseinrender.yaml— fill these in before deploying:MCP_GATEWAY_TOKEN— generate one, e.g.openssl rand -hex 32MOCK_MODE—trueto start serving mock data immediately (recommended while the real Siebel instance isn't ready yet),falseif you already have real Siebel credentials to enter belowSIEBEL_BASE_URL/SIEBEL_USERNAME/SIEBEL_PASSWORD— only required ifMOCK_MODE=false; leave blank if starting in mock mode
Click Deploy Blueprint. Render assigns
https://<your-service>.onrender.com.
To change any of these later (e.g. flip MOCK_MODE once the real Siebel
instance is ready): open the service (not the Blueprint) → Environment
tab → edit the value → Save Changes, which triggers a redeploy.
Pointing your MCP client at the deployed gateway
URL:
https://<your-service>.onrender.com/mcpTransport: streamable HTTP
Auth: a static bearer token/API key, not OAuth — set the header to
Authorization: Bearer <MCP_GATEWAY_TOKEN>(the same value from step 4 above). If your client's auth UI wants a header name and a raw value separately rather than one combined header, header name isAuthorizationand value isBearer <token>(include the word "Bearer") — if that gets a 401, try giving it just the raw token instead, since some clients add theBearerprefix themselves.
Notes from actually deploying this
The mock store is in-memory only. Anything created/updated/deleted during a session persists only as long as that server process stays up. A redeploy, or Render's free-tier instance spinning down after ~15 minutes idle and cold-starting on the next request, resets it back to the original seeded data. That's expected mock-mode behavior, not a bug.
The
mcpPython SDK's client-side transport dependency ishttpx2, not plainhttpx— only relevant if you're writing your own MCP client against this gateway using the SDK'sstreamable_http_clienthelper rather than a higher-level client app; it expects anhttpx2.AsyncClientfor thehttp_client=argument, not a regularhttpx.AsyncClient.
Flip-to-live checklist
Once the real Siebel instance is up:
Set
SIEBEL_BASE_URLto the real instance (no trailing slash), e.g.https://<siebel-host>/siebel/v1.0Set
SIEBEL_USERNAME/SIEBEL_PASSWORDSet
SIEBEL_VERIFY_TLS=falseonly if the instance is still on a self-signed cert — flip back totrueonce it has a real oneSet
MOCK_MODE=falseRedeploy, then smoke-test with
siebel_list_objectsandsearch_facilitiesbefore pointing real agent traffic at it
Tools
Generic (work against any Business Component: Contact, Employee,
Medical Facility, Appointment Slot, Referral Request,
Commitment Form, Treatment History):
Tool | Purpose |
| List/search records: |
| Fetch one record by |
| Create a record from a |
| Update a record's |
| Delete a record by |
| List the business components the account exposes |
Convenience wrappers, thinner surface for common demo asks:
Tool | Purpose |
| By specialty code and/or exact city |
| By last-name prefix |
| Patient + doctor + specialty + urgency; starts at Stage Code = COMMUNITY_SEARCH |
Notes on the Siebel REST API assumptions baked in here
Auth is HTTP Basic on every outbound call (separate from this gateway's own bearer-token check on inbound MCP requests — two different auth layers, don't conflate them).
URL grammar is
{BASE}/data/{BusinessObject}/{BusinessComponent}. BO and BC are not always the same name here — e.g.Referral Requestis a child BC under thePatient ReferralBO,Appointment Slotis a child BC underAppointment Management. Tools take the BC name; the client looks up the right BO internally. Path segments are URL-encoded, so multi-word names work.List responses arrive as
{"items": [...]}; the"links"array on each record is stripped before returning to the model, to save tokens.Non-2xx responses are surfaced as the HTTP status code plus Siebel's own message text; a 401 gets a clear "check Siebel credentials" prefix. Outbound calls time out at 30s.
Several fields are computed, not stored (Age, Days Waiting, Visits Remaining, Is Expired, Entry Gap Days, and the Facility/Doctor/Patient join fields) — they're derived fresh on every read, matching how they'd behave as real Business Component calculated/join fields rather than physical columns.
This 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.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for Salesforce that exposes CLI, REST, Connect, Data 360, Bulk 2.0, and Einstein Models APIs as tools for any MCP-compatible client to manage orgs, data, and metadata.Apache 2.0
- FlicenseNot gradedqualityCmaintenanceRemote MCP server for MuleSoft APIs that enables agents to discover operations and execute validated API calls with a fixed low-context tool surface.
- FlicenseNot gradedqualityBmaintenanceA generic MCP gateway that exposes any HTTP-based SQL portal as LLM-friendly MCP tools and standard REST endpoints, serving both human users and AI agents simultaneously.
- FlicenseNot gradedqualityDmaintenanceMCP server for Siebel CRM with HTTP/SSE transport, enabling secure access to Siebel data and operations like accounts, contacts, opportunities, and queries. Designed to be deployed on Phala Cloud TEE for credential protection.
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI access to Swagger by SmartBear.
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/yanivshoval0104/siebel-mcp-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server