MCPcopy Create free account

hub / github.com/Harmeet10000/AgentNexus-LangChain-FastAPI / functions

Functions1,424 in github.com/Harmeet10000/AgentNexus-LangChain-FastAPI

Methodcall_tool
(self, tool_name: str, arguments: dict[str, Any] | None = None)
src/mcp_core/testing.py:30
Methodcall_tool
( self, server_name: str, tool_name: str, arguments: dict[str, Any] | None = N
src/mcp_core/client/manager.py:110
Functioncatalog_resource
()
src/mcp_core/server/resources.py:116
Functioncatch_all
Handle 404 errors for undefined routes.
src/app/main.py:170
Functionchange_password
( body: ChangePasswordRequest, user: CurrentVerifiedUser, request: Request, # Resolve claims t
src/app/features/profile/router.py:70
Functioncheck_bloom_filter
Check if item(s) might exist in a Bloom filter (BF.EXISTS or BF.MEXISTS). Args: redis: Redis client instance filter_name: Name of
src/app/utils/cache/redis_func.py:1344
Functioncheck_graphiti
Verify Graphiti is initialised (lightweight attribute check).
src/app/middleware/health_check.py:83
Functioncheck_mongodb
Verify MongoDB connectivity via ping command.
src/app/middleware/health_check.py:53
Functioncheck_neo4j
Verify Neo4j connectivity via verify_connectivity.
src/app/middleware/health_check.py:67
Functioncheck_postgres
Verify PostgreSQL connectivity via a lightweight SELECT 1.
src/app/middleware/health_check.py:24
Methodcheck_rate_limit
Check if rate limit is exceeded. Args: identifier: User identifier (user_id or IP) scope: Rate limit scope
src/app/shared/services/rate_limiter.py:43
Functioncheck_redis
Verify Redis connectivity via PING.
src/app/middleware/health_check.py:39
Methodcheck_safety
(state, response)
src/app/shared/langchain_layer/agents/middlewares/guardrails.py:212
Functionclarify_with_user
Ask a clarifying question when the requested research scope is unclear.
src/app/shared/langgraph_layer/open_deep_search/graph.py:68
Functionclassify_extract_node
(state: IngestionState)
src/app/shared/langgraph_layer/ingestion_kb/nodes.py:257
Functionclean
()
src/app/shared/rag/document_processing/ingest_v2.py:412
Functionclean_markdown
Clean and normalize markdown content.
src/app/shared/crawler/chunker.py:102
Functionclose_mcp_client_manager
Close all MCP upstream connections during lifespan shutdown.
src/mcp_core/mcp.py:20
Functioncomplete_multipart_upload
( storage: StorageService, *, key: str, upload_id: str, parts: list[dict[str, Any]] )
src/app/shared/services/storage.py:790
Methodcomplete_multipart_upload
( self, *, key: str, upload_id: str, parts: list[dict[str, Any]],
src/app/shared/services/storage.py:217
Functioncompliance_node
(state: LegalAgentState)
src/app/shared/langgraph_layer/agent_saul/nodes.py:605
Methodcompliance_tools
(self)
src/app/shared/rag/graphiti/registry.py:86
Functioncompress_research
Compress raw researcher messages into a concise summary.
src/app/shared/langgraph_layer/open_deep_search/graph.py:417
Functionconfig_resource
()
src/mcp_core/server/resources.py:100
Functionconsole_format
Format logs for console with INFO/META structure.
src/app/utils/logger.py:25
Functioncontext_grader_node
(state: RetrievalState)
src/app/shared/langgraph_layer/retrieval_kb/nodes.py:215
Functioncontextualize_chunk_node
(state: dict[str, Any])
src/app/shared/langgraph_layer/ingestion_kb/nodes.py:213
Functioncopy_object
(storage: StorageService, *, source_key: str, destination_key: str)
src/app/shared/services/storage.py:770
Methodcopy_object
(self, *, source_key: str, destination_key: str)
src/app/shared/services/storage.py:180
Functioncrawl_executor
Execute crawl_webpage tool calls from the researcher.
src/app/shared/langgraph_layer/open_deep_search/graph.py:371
Functioncrawl_url
Crawl a URL and optionally extract structured data. - **url**: URL to crawl - **mode**: Output mode (markdown, html, text, summary)
src/app/features/crawler/router.py:37
Functioncrawl_webpage
Fetch and return rendered markdown content from a URL using Crawl4AI.
src/app/shared/langgraph_layer/open_deep_search/utils.py:197
Methodcrawler
(self)
src/app/features/crawler/service.py:51
Functioncreate_bloom_filter
Create a Bloom filter (BF.RESERVE). Args: redis: Redis client instance filter_name: Name of the filter error_rate: Error
src/app/utils/cache/redis_func.py:1241
Functioncreate_cached_embedder
Create a cached embedding generator. Args: model: Embedding model to use cache_max_size: Maximum cache size Returns:
src/app/shared/rag/document_processing/embedder.py:335
Functioncreate_embedding_cache
Factory function to create embedding cache.
src/app/shared/rag/document_processing/embedder.py:330
Functioncreate_extraction_tools
Factory function to create extraction tools. Args: db_pool: Database connection pool use_graphiti: Whether to use Graphiti
src/app/shared/rag/document_processing/todo_temp.py:360
Functioncreate_ingestion_pipeline
Factory function to create ingestion pipeline functions. Args: config: Ingestion configuration documents_folder: Folder cont
src/app/shared/rag/document_processing/ingest_v2.py:382
Functioncreate_multipart_upload
( storage: StorageService, *, key: str, content_type: str, metadata: dict[str, str] | None = None )
src/app/shared/services/storage.py:774
Methodcreate_multipart_upload
( self, *, key: str, content_type: str, metadata: dict[str, str],
src/app/shared/services/storage.py:187
Methodcreate_multipart_upload_plan
( self, *, filename: str, content_type: str, file_size: int, d
src/app/shared/services/storage.py:611
Functioncreate_search_index
Create a Redis search index (FT.CREATE). Args: redis: Redis client instance index_name: Name of the index prefix: Key pre
src/app/utils/cache/redis_func.py:1082
Functioncreate_session
( body: CreateSessionRequest, _deps: AgentSaulDepsAnnotated, claims: CurrentClaims, )
src/app/features/agent_saul/router.py:49
Functioncreate_subgraph_expander
Factory: create a Neo4j subgraph expansion context. Wraps the driver in a configuration object that can be passed as a DI dependency. This ke
src/app/shared/rag/graphiti/subgraph.py:110
Methodcursor_paginate
Apply cursor-based pagination.
src/app/utils/api_features.py:89
Functiondatabase_query
Template for safe SQL queries.
src/mcp_core/server/prompts.py:70
Functiondeactivate_user
( user_id: Annotated[str, Path()], service: UserAdminServiceDep, claims: Annotated[TokenClaims, De
src/app/features/users/router.py:96
Functiondecorator
(func)
src/app/utils/logger.py:111
Functiondecorator
(t: BaseTool)
src/app/shared/langchain_layer/agents/tools/base.py:137
Functiondeep_research_node
(state: LegalAgentState)
src/app/shared/langgraph_layer/agent_saul/nodes.py:830
Methoddeep_research_tool
(self)
src/app/shared/rag/graphiti/registry.py:94
Functiondefault_span_details
(scope: dict)
src/app/middleware/otel.py:24
Methoddelete
Delete a single key or entire namespace.
src/app/shared/langchain_layer/agents/memory/cognee_client.py:310
Functiondelete_by_predicate
Remove messages that match the predicate.
src/app/shared/langchain_layer/messages.py:80
Functiondelete_by_uri
(storage: StorageService, *, uri: str)
src/app/shared/services/storage.py:752
Methoddelete_by_uri
(self, *, uri: str)
src/app/shared/services/storage.py:339
Functiondelete_hash
Delete an entire hash. Args: redis: Redis client instance object_type: Entity type for namespacing key: Hash key identifi
src/app/utils/cache/redis_func.py:501
Functiondelete_hash_field
Delete a specific field from a hash. Args: redis: Redis client instance object_type: Entity type for namespacing key: Has
src/app/utils/cache/redis_func.py:458
Functiondelete_object
(storage: StorageService, *, key: str)
src/app/shared/services/storage.py:744
Methoddelete_object
(self, *, key: str)
src/app/shared/services/storage.py:164
Functiondelete_search_index
Delete a Redis search index (FT.DROPINDEX). Args: redis: Redis client instance index_name: Name of the index to delete Retur
src/app/utils/cache/redis_func.py:1204
Functiondelete_user
( user_id: Annotated[str, Path()], service: UserAdminServiceDep, claims: Annotated[TokenClaims, De
src/app/features/users/router.py:114
Functiondelete_user_endpoint
Delete user and invalidate cache. Endpoint example: DELETE /api/v1/users/123 Behavior: - Deletes user from database - Invalidate
src/app/examples/redis_examples.py:243
Functiondeploy_check
Pre-deployment checklist.
src/mcp_core/server/prompts.py:93
Methoddescriptions
(self)
src/app/shared/langchain_layer/agents/tools/base.py:94
Functiondetect_conflicts
Find circular obligations and multi-hop override chains. Args: config: Neo4j subgraph configuration with driver. group_ids: Neo4j
src/app/shared/rag/graphiti/subgraph.py:214
Functiondetect_graph_conflicts
Detect contradicting obligation patterns in the legal knowledge graph. Finds: - Circular obligations: Party A owes Party B who owes
src/app/shared/langchain_layer/agents/tools/precedent_tools.py:165
Functiondiagnose_issue
Template an incident diagnosis workflow.
src/mcp_core/server/prompts.py:49
Methoddiscover_urls
Discover URLs for a domain via sitemap without full crawl.
src/app/shared/crawler/crawler.py:148
Methoddispatch
( self, request: Request, call_next: Callable[[Request], Awaitable[Response]] )
src/app/middleware/api_versioning.py:42
Functiondispatch_contextualize_chunks
(state: IngestionState)
src/app/shared/langgraph_layer/ingestion_kb/nodes.py:192
Functiondispatch_entity_extraction
(state: LegalAgentState)
src/app/shared/langgraph_layer/agent_saul/nodes.py:473
Functiondo_run_migrations
Run migrations with the provided database connection. Args: connection: Active database connection from the engine
src/alembic/env.py:58
Functiondowngrade
()
src/alembic/versions/0001_add_outbox_tables.py:58
Functiondowngrade
()
src/alembic/versions/2bc7726317f6_rename_metadata_to_meta_data.py:24
Functiondowngrade
()
src/alembic/versions/a71f0d7d9c12_add_unified_documents_and_chunks.py:107
Functiondowngrade
()
src/alembic/versions/8a7d9b1c2e3f_add_search_documents_and_chunks.py:102
Functiondowngrade
()
src/alembic/versions/c0c17c6eb1cc_initial_schema_document_vectors_and_.py:95
Functiondowngrade
()
src/alembic/versions/9f4a1b7c6d2e_contract_kb_clauses_pg_textsearch.py:142
Methodedit_context
(request, handler)
src/app/shared/langchain_layer/agents/middlewares/guardrails.py:156
Functionembed_query
Generate embedding for a search query. Args: query: Search query model: Embedding model to use Returns: Query e
src/app/shared/rag/document_processing/embedder.py:259
Functionembed_store_node
(state: IngestionState)
src/app/shared/langgraph_layer/ingestion_kb/nodes.py:302
Functionentity_extraction_node
(state: dict[str, Any])
src/app/shared/langgraph_layer/agent_saul/nodes.py:494
Functionexchange_subject_token_for_mcp_token
( subject_token: str, base_mcp_url: str, *, http_client: httpx.AsyncClient | None = None, )
src/mcp_core/client/auth.py:29
Functionexecute_pipeline
Execute multiple Redis commands in a pipeline. Args: redis: Redis client instance operations: List of operations like:
src/app/utils/cache/redis_func.py:262
Functionexplain_system
Describe the application architecture and available MCP surface.
src/mcp_core/server/prompts.py:13
Methodextract_and_summarize
Extract structured data AND create a summary. Args: content: Content to process schema_type: Predefined sche
src/app/shared/crawler/processor.py:236
Functionextract_code_blocks
Extract code blocks with language detection.
src/app/shared/rag/document_processing/todo_temp.py:49
Functionextract_entities_batch
Extract from multiple documents. Args: documents: List of (text, document_id) tuples use_graphiti: Whether to use Graphiti (
src/app/shared/rag/document_processing/entity_extractor.py:221
Functionextract_images
Extract images with captions.
src/app/shared/rag/document_processing/todo_temp.py:82
Functionextract_schema_node
(state: IngestionState)
src/app/shared/langgraph_layer/ingestion_kb/nodes.py:112
Functionextract_tables
Extract tables from document.
src/app/shared/rag/document_processing/todo_temp.py:11
Functionextract_title_from_markdown
Extract title from markdown content.
src/app/shared/crawler/chunker.py:94
Functionextractor
(text: str, document_id: str)
src/app/shared/rag/document_processing/entity_extractor.py:362
Methodfail
(cls, error: str, **meta: Any)
src/app/shared/langchain_layer/agents/tools/idempotency.py:50
Methodfailing_op
()
tests/unit/test_circuit_breaker.py:117
Methodfake_execute
(*args, **kwargs)
tests/unit/test_outbox.py:22
Functionfeatures_resource
()
src/mcp_core/server/resources.py:104
Functionfetch
(resource_id: str)
src/mcp_core/server/tools.py:297
Functionfetch_existing_node
(state: ReconciliationState)
src/app/shared/langgraph_layer/reconciliation/nodes.py:64
← previousnext →901–1,000 of 1,424, ranked by callers