mcp-server-siebel
Enables AI models to interact with Oracle Siebel CRM via its REST API, supporting account, contact, opportunity retrieval, activity creation, record updates, and custom queries.
README
mcp-server-siebel
MCP (Model Context Protocol) server for Oracle Siebel CRM integration via its REST API. Allows Claude and other AI models to interact directly with Siebel.
Prerequisites
- Node.js >= 18
- Access to a Siebel CRM instance with the REST API enabled
- Siebel username and password
Installation
npm install -g @jeretucu/mcp-server-siebel
Or use directly with npx:
npx @jeretucu/mcp-server-siebel
Environment variables
Create a .env file based on .env.example:
SIEBEL_URL=https://your-siebel-server:9001
SIEBEL_USERNAME=your_username
SIEBEL_PASSWORD=your_password
SIEBEL_LANG=ENU
| Variable | Description | Required |
|---|---|---|
SIEBEL_URL |
Siebel server base URL | Yes |
SIEBEL_USERNAME |
Siebel username | Yes |
SIEBEL_PASSWORD |
Siebel password | Yes |
SIEBEL_LANG |
Language (default: ENU) | No |
Connect to Claude Desktop
Add this to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"siebel": {
"command": "npx",
"args": ["-y", "@jeretucu/mcp-server-siebel"],
"env": {
"SIEBEL_URL": "https://your-siebel-server:9001",
"SIEBEL_USERNAME": "your_username",
"SIEBEL_PASSWORD": "your_password",
"SIEBEL_LANG": "ENU"
}
}
}
}
Connect to Claude Code
claude mcp add siebel npx @jeretucu/mcp-server-siebel \
-e SIEBEL_URL=https://your-server:9001 \
-e SIEBEL_USERNAME=username \
-e SIEBEL_PASSWORD=password
Available tools
get_account
Retrieves an account by ID.
Get the account with ID 1-ABC123
search_accounts
Searches accounts by name or other criteria.
Search for accounts with name containing "Acme Corp"
get_contact
Retrieves a contact by ID.
Get contact 1-XYZ456
search_contacts
Searches contacts by first name, last name or email.
Search for contacts with last name "González"
get_opportunity
Retrieves an opportunity by ID or search criteria.
Search for opportunities with status "Open"
create_activity
Creates an activity or task in Siebel.
Create a "Call" activity for account 1-ABC123
update_record
Updates any Siebel record.
Update the Status field to "Active" on account 1-ABC123
run_query
Runs a query on any Business Object.
Query the Quote Business Object with searchspec [Status]='Open'
Local development
git clone https://github.com/jeretucu/mcp-server-siebel
cd mcp-server-siebel
npm install
cp .env.example .env
# edit .env with your credentials
npm run dev
Contributing
- Fork the repository
- Create a branch:
git checkout -b feature/new-tool - Commit:
git commit -m "feat: add new tool" - Push:
git push origin feature/new-tool - Open a Pull Request
License
MIT © jeretucu
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.