- Home
- MCP servers
- 0nMCP
0nMCP
- typescript
1
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"0nork-0nmcp": {
"command": "npx",
"args": [
"0nmcp"
],
"env": {
"ANTHROPIC_API_KEY": "YOUR_API_KEY"
}
}
}
}You can run 0nMCP on your machine to orchestrate 252 tools across 17 services using natural language, without building workflows or writing code. It lets you connect services, ask for actions, and have the AI plan and execute multi-step tasks across endpoints while providing an auditable history locally.
How to use
Start by connecting your services using a simple, natural language interface. Once connected, you describe what you want to achieve, and the system plans the steps, calls the appropriate APIs, and returns results. You can perform single-service actions like creating a Stripe customer or posting a message to Slack, or describe multi-step tasks that involve several services.
How to install
Prerequisites: You need Node.js and npm installed on your machine.
# One quick command to start using 0nMCP
npx 0nmcp
If you prefer a global installation, you can install the package globally and then run it.
# Global installation
npm install -g 0nmcp
# Run the MCP server
0nmcp
Configuration and usage notes
You can configure Claude Desktop integration by adding a configuration block that points to the MCP server. The optional API key enables AI-powered multi-step planning.
{
"mcpServers": {
"0nmcp": {
"command": "npx",
"args": ["0nmcp"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}
Available tools
execute
Run any task in natural language across all connected services.
connect_service
Connect a new service with credentials.
disconnect_service
Remove a connected service.
list_connections
See what's connected and capability counts.
list_available_services
Browse all 17 services grouped by category.
get_service_info
Deep dive on a specific service — endpoints, auth, capabilities.
api_call
Direct API call to any connected service endpoint.
crm_auth
OAuth flows, tokens, and snapshots for CRM access.
crm_contacts_crud
CRUD operations for contacts within the CRM module.
crm_conversations_crud
CRUD operations for conversations and messages.
crm_calendars_crud
CRUD operations for calendars and events.
crm_opportunities_crud
CRUD operations for opportunities and pipelines.
crm_invoices_crud
CRUD operations for invoices and related actions.
crm_payments_crud
CRUD operations for payments and transactions.
crm_products_crud
CRUD operations for products and prices.
crm_locations_crud
Management of locations and related data in CRM.
crm_social_crud
Management of social posts and related entities.
crm_users_crud
CRUD operations for users and related data.
crm_objects_crud
Management of custom objects and their relationships.