Available Tools

Available Tools

The Hypermodel Docs MCP exposes the following tools for your AI coding agents:

IDEs supported

  • Claude Code
  • Amp Code
  • Cursor
  • VS Code

Core Tools

ToolDescriptionOutput / Result
linkLink to a user or team to set your scope contextLinks your session to a specific user or team for scoped documentation access
list-docsCheck what documentation is available in your current scope{ "indexes": ["ampcode-com", "developer-salesforce-com"] }
search-docsSearch documentation for answers in your current scopeReturns ranked results with URLs, titles, snippets, and relevance scores
indexAdd a new documentation source if not already presentCreates searchable index from the documentation site
index-statusCheck detailed status and progress of indexing jobsReal-time progress, duration, error details for indexing workflows
list-indexing-jobsList recent indexing jobs for your current scopeHistory of indexing jobs with status, progress, and timing info

Scope and Access Management

Scope Types

  • user (default): Personal documentation access
  • team: Shared team documentation access

Linking Workflow

  1. Link to a user: link tool with user identifier and scope='user'
  2. Link to a team: link tool with team identifier and scope='team'
  3. Once linked, all list-docs, search-docs, and index operations work within that scope
  4. Each user has access to docs based on their permissions and scope context

Tool Details

link

Set your scope context by linking your session to a specific user or team.

Parameters:

  • identifier (string, required): User ID or team ID to link to
  • scope (string, optional): Scope type - 'user' or 'team' (default: 'user')

Notes:

  • Links your current session to the specified user or team
  • The scope parameter determines whether you're linking to a user ('user') or team ('team')
  • All subsequent operations will be scoped to this user or team context

list-docs

List all available documentation indexes in your current scope.

Parameters: None

Returns: Array of available documentation indexes

search-docs

Search through indexed documentation using semantic search.

Parameters:

  • index (string, required): The documentation index to search
  • query (string, required): The search query
  • topK (number, optional): Number of results to return (default: 10)

Returns: Ranked search results with URLs, titles, content snippets, and relevance scores

index

Index documentation from a public URL.

Parameters:

  • url (string, required): The URL to index documentation from
  • shareWith (array, optional): List of user/team IDs to share with
  • accessLevel (string, optional): Access level to grant ('read', 'write', 'admin')

Returns: Indexing job details and workflow ID

index-status

Check the status of a documentation indexing job.

Parameters:

  • workflowId (string, required): The workflow ID of the indexing job

Returns: Real-time progress, duration, and error details

list-indexing-jobs

List recent indexing jobs for your current scope.

Parameters:

  • limit (number, optional): Number of jobs to return (max 50, default 10)

Returns: History of indexing jobs with status, progress, and timing information