0
0nMCP — Universal AI API Orchestrator
by io.github.0nork · HTTP
0nMCP — Universal AI API Orchestrator by io.github.0nork — connect via http to access its tools through your RouterMCP gateway.
#registry.modelcontextprotocol.io
TOOLS
16
available on this server
TRANSPORT
HTTP
SSE fallback
AUTH
Varies
depends on server or gateway configuration
REGION
Global
multi-region ready
STATUS
Active
accepting connections
Overview
ATTACHREADY
routermcp.jsonjson
{
"mcpServers": {
"0nMCP": {
"url": "https://0nmcp.com/api/mcp",
"type": "http"
}
},
"requiresAuth": false,
"requiresOAuth": false
}
Tools (16)
add_contact_note
Add a note to a CRM contact
schema
{
"type": "object",
"required": [
"contactId",
"body"
],
"properties": {
"body": {
"type": "string"
},
"contactId": {
"type": "string"
}
}
}
add_contact_tags
Add tags to a CRM contact
schema
{
"type": "object",
"required": [
"contactId",
"tags"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"contactId": {
"type": "string"
}
}
}
create_contact
Create a new CRM contact
schema
{
"type": "object",
"required": [
"email"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"lastName": {
"type": "string"
},
"firstName": {
"type": "string"
}
}
}
create_opportunity
Create a new opportunity/deal
schema
{
"type": "object",
"required": [
"name",
"pipelineId",
"stageId"
],
"properties": {
"name": {
"type": "string"
},
"stageId": {
"type": "string"
},
"contactId": {
"type": "string"
},
"pipelineId": {
"type": "string"
},
"monetaryValue": {
"type": "number"
}
}
}
get_appointments
Get appointments in a date range
schema
{
"type": "object",
"properties": {
"endTime": {
"type": "string"
},
"startTime": {
"type": "string"
},
"calendarId": {
"type": "string"
}
}
}
get_calendars
List all CRM calendars
schema
{
"type": "object",
"properties": {}
}
get_contact
Get a CRM contact by ID
schema
{
"type": "object",
"required": [
"contactId"
],
"properties": {
"contactId": {
"type": "string"
}
}
}
get_custom_fields
List all custom fields
schema
{
"type": "object",
"properties": {}
}
get_location
Get CRM location details
schema
{
"type": "object",
"properties": {}
}
get_pipelines
List all CRM pipelines and stages
schema
{
"type": "object",
"properties": {}
}
search_contacts
Search CRM contacts by name, email, or phone
schema
{
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"query": {
"type": "string"
}
}
}
search_conversations
Search CRM conversations
schema
{
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"contactId": {
"type": "string"
}
}
}
search_opportunities
Search CRM opportunities/deals
schema
{
"type": "object",
"properties": {
"query": {
"type": "string"
},
"pipelineId": {
"type": "string"
}
}
}
send_email
Send an email to a contact
schema
{
"type": "object",
"required": [
"contactId",
"subject",
"htmlBody"
],
"properties": {
"subject": {
"type": "string"
},
"htmlBody": {
"type": "string"
},
"contactId": {
"type": "string"
}
}
}
send_message
Send a message (Email, SMS, WhatsApp)
schema
{
"type": "object",
"required": [
"contactId",
"type",
"message"
],
"properties": {
"type": {
"enum": [
"Email",
"SMS",
"WhatsApp"
],
"type": "string"
},
"message": {
"type": "string"
},
"subject": {
"type": "string"
},
"contactId": {
"type": "string"
}
}
}
update_contact
Update a CRM contact
schema
{
"type": "object",
"required": [
"contactId"
],
"properties": {
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"lastName": {
"type": "string"
},
"contactId": {
"type": "string"
},
"firstName": {
"type": "string"
}
}
}