Loading...
Loading...
Numonic speaks the Model Context Protocol. Point any MCP-capable agent at one endpoint and it can search, organize, and export your creative assets — 65 tools across 13 domains, with provenance intact.
Endpoint: https://www.numonic.ai/mcp
Which credential each kind of client uses, and what each permission allows, is set out in MCP authentication.
Sign in and open Settings → Workspace → Connected Agents. Under Create a new key, give it a name your future self will recognise (for example, the agent it belongs to) and tick only the permissions the agent needs. Read is always included; add Search for search tools, Write to add or change assets and collections, and Export to export or publish.
Copy the key when it is shown — it starts with napi_ and is displayed once. A key belongs to one workspace: everything the agent does lands there.
Most clients take a JSON block like this in their MCP server settings. Replace the placeholder with your key.
{
"mcpServers": {
"numonic": {
"url": "https://www.numonic.ai/mcp",
"headers": {
"Authorization": "Bearer napi_your_key_here"
}
}
}
}Send the key in a header only — Authorization: Bearer napi_… or X-API-Key: napi_…. A key in the URL (?api_key=) is rejected. Client-specific file locations and SDK examples are on the MCP reference.
Restart or reload your client and ask it to list Numonic's tools. To check from a terminal instead, list the tools:
curl -s https://www.numonic.ai/mcp \
-H "Authorization: Bearer napi_your_key_here" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'The response should list 65 tools. Then make one read call:
curl -s https://www.numonic.ai/mcp \
-H "Authorization: Bearer napi_your_key_here" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
"params":{"name":"ListCollections","arguments":{}}}'A 401 means the key is missing, mistyped, or revoked. A permission error means the key lacks the scope that tool needs — create a key with it.
In your client's connector or integration settings, add a custom MCP connector with this URL:
https://www.numonic.ai/mcpYou don't configure anything here. The client calls the endpoint, is told where Numonic's authorization details live (/.well-known/oauth-protected-resource/mcp), and registers itself with Numonic's authorization server.
You are sent to a Numonic consent page. Sign in, pick the workspace, and choose what the connection may do. Some permissions, such as administration, can only be held by an API key — see OAuth connection permissions.
Back in the client, ask it to list Numonic's tools and then to list your collections.
Next: browse the full tool reference.