Find and retrieve
Search the maps available to your account and request full, compact, or summary representations.
Model Context Protocol
Professional users can connect a compatible AI client to your KnowMapped account. It can use purpose-built tools to find, create, and refine maps.
Agent-ready mapping
MCP gives an AI client a structured interface to KnowMapped. The client works with concepts, relationships, metadata, and layouts as map objects rather than treating the graph as an unstructured block of text.
Search the maps available to your account and request full, compact, or summary representations.
Create maps, append findings, and use KnowMapped’s existing generation and credit controls.
Add, revise, connect, remove, and lay out map content with validation before changes are applied.
Connection guide
Use a client that implements MCP Streamable HTTP and OAuth 2.0. Start with the MCP endpoint and let the client follow the protected-resource challenge to discover the authorization server. Do not hard-code authorization URLs or place KnowMapped credentials in client settings.
Configure a remote Streamable HTTP server with https://mcp.knowmapped.com/mcp. The initial unauthenticated request is expected to return 401 and a WWW-Authenticate challenge.
Follow the challenge to the protected-resource metadata, resolve its authorization server, and read the authorization-server metadata. This is where the client learns the endpoints, scopes, PKCE method, and registration options.
Use a Client ID Metadata Document when supported; use Dynamic Client Registration as the compatibility fallback. The client must use token_endpoint_auth_method=none, and its redirect URI must be registered exactly.
Generate a PKCE S256 verifier and challenge, open the browser authorization request, then sign in and approve the requested map scopes. Credentials stay in the KnowMapped browser flow.
Exchange the authorization code with the verifier and resource binding, send the bearer token to https://mcp.knowmapped.com/mcp, then run MCP initialization and tools/list. Refresh the client’s tools or start a new conversation after connecting.
OpenAI clients
ChatGPT
Turn on Developer mode under Settings → Security and login. In the composer, open ChatGPT Plugins, use the plus button to create a developer-mode app, select Streamable HTTP, and enter https://mcp.knowmapped.com/mcp. Complete the browser authorization, then refresh the app’s tools before starting a new chat.
Codex
Register the Streamable HTTP endpoint, then run the separate login command so Codex can complete the browser-based OAuth flow and cache the resulting credentials.
codex mcp add knowmapped --url https://mcp.knowmapped.com/mcp
codex mcp login knowmapped
codex mcp listRead OpenAI’s Codex MCP guide Access and billing
Every request is limited by the connected account’s existing map access. A public link does not grant edit permission, and a client cannot bypass ownership or sharing controls.
Each new map created through MCP uses 1 generation credit. Free and Professional users can use generation credits for MCP map creation. Reading or editing an existing map does not use credits. The creation preflight returns the current cost before a map is created, and failed validation does not consume credits.
Disconnect the integration from your client to remove its local connection. You can also revoke OAuth access from KnowMapped when you need to invalidate an existing authorization.
Technical reference
The server follows MCP Streamable HTTP and OAuth discovery conventions. Clients should begin with the MCP endpoint rather than configuring authorization endpoints manually.
https://mcp.knowmapped.com/mcphttps://mcp.knowmapped.com/.well-known/oauth-protected-resource/mcphttps://app.knowmapped.comhttps://mcp.knowmapped.com/mcp| Scope | Purpose |
|---|---|
maps:read | Search and retrieve maps available to the connected account. |
maps:create | Run creation preflight and create maps. |
maps:write | Validate and apply edits to maps where the account has edit access. |
search_knowmapped_mapsSearch the connected account’s authorized map library.
get_knowmapped_mapRetrieve a full, compact, or summary map representation.
preflight_knowmapped_map_creationCheck eligibility and required credits before constructing a map.
create_knowmapped_mapValidate or create a map through KnowMapped’s shared creation service.
update_knowmapped_mapValidate or atomically apply revision-safe graph operations.
Troubleshooting
Refresh the integration’s tools and begin a new conversation. An existing conversation may retain the tool list it received when it started.
Disconnect and reconnect KnowMapped in the client. Confirm that the client supports OAuth for remote MCP servers.
Confirm that the connected KnowMapped account has Professional access and is an owner or editor of that map.