mcp-server-siebel
Click on "Deploy 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., "@mcp-server-siebelGet the account with ID 1-ABC123"
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.
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
Related MCP server: MCP Salesforce Lite
Installation
npm install -g @jeretucu/mcp-server-siebelOr use directly with npx:
npx @jeretucu/mcp-server-siebelEnvironment 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=ENUVariable | Description | Required |
| Siebel server base URL | Yes |
| Siebel username | Yes |
| Siebel password | Yes |
| 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=passwordAvailable tools
get_account
Retrieves an account by ID.
Get the account with ID 1-ABC123search_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-XYZ456search_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-ABC123update_record
Updates any Siebel record.
Update the Status field to "Active" on account 1-ABC123run_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 devContributing
Fork the repository
Create a branch:
git checkout -b feature/new-toolCommit:
git commit -m "feat: add new tool"Push:
git push origin feature/new-toolOpen a Pull Request
License
MIT © jeretucu
This server cannot be deployed
Maintenance
Related MCP Connectors
- PlixanaOAuthcom.plixana
Operate the Plixana CRM from any AI: contacts, deals, quotes, WhatsApp and metrics.
Run SOQL queries to explore and retrieve Salesforce data. Access accounts, contacts, opportunities…
Connect AI to your Attio CRM. Manage contacts, companies, deals, and sales pipelines. Create tasks…
Operate Obriym CRM from your AI assistant: leads, deals, orders, catalog, stock, marketplaces.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to query Salesforce data including retrieving accounts by ID, searching accounts by name, and fetching recent opportunities through authenticated API access.-
- AlicenseAqualityDmaintenanceEnables AI assistants to securely interact with Salesforce CRM data through SOQL queries, CRUD operations, and metadata exploration. Supports connecting to Salesforce objects like Accounts, Contacts, and Opportunities via OAuth 2.0 authentication.82MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to interact with Odoo ERP systems through natural language, allowing users to search, create, update, and manage business records like customers, products, and invoices across any Odoo instance.1Mozilla Public 2.0
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Salesforce CRM by executing SOQL queries and performing CRUD operations on records such as Leads. It supports secure OAuth 2.0 authentication and provides management for both standard and custom Salesforce fields.-