mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-07 22:53:55 -05:00
misc: addressed new round of comments
This commit is contained in:
@@ -385,7 +385,7 @@ export const registerAiMcpEndpointRouter = async (server: FastifyZodProvider) =>
|
||||
},
|
||||
schema: {
|
||||
params: z.object({
|
||||
endpointId: z.string().trim().min(1)
|
||||
endpointId: z.string().uuid().trim().min(1)
|
||||
}),
|
||||
response: {
|
||||
200: z.object({
|
||||
@@ -573,7 +573,7 @@ export const registerAiMcpEndpointRouter = async (server: FastifyZodProvider) =>
|
||||
},
|
||||
schema: {
|
||||
params: z.object({
|
||||
endpointId: z.string().trim().min(1)
|
||||
endpointId: z.string().uuid().trim().min(1)
|
||||
}),
|
||||
body: z.object({
|
||||
redirect_uris: z.array(z.string()),
|
||||
|
||||
@@ -47,16 +47,7 @@ Every tool invocation through an MCP endpoint creates a log entry containing:
|
||||

|
||||
</Step>
|
||||
<Step title="Filter by time range">
|
||||
Use the time range selector to filter logs:
|
||||
|
||||
- **5m**: Last 5 minutes
|
||||
- **30m**: Last 30 minutes
|
||||
- **1h**: Last hour
|
||||
- **3h**: Last 3 hours
|
||||
- **12h**: Last 12 hours
|
||||
- **Custom**: Select a custom date/time range
|
||||
|
||||
You can also adjust the timezone using the timezone dropdown.
|
||||
Use the time range selector to filter logs. You can also adjust the timezone using the timezone dropdown.
|
||||
</Step>
|
||||
<Step title="Apply filters">
|
||||
Click **Filter** to apply additional filters:
|
||||
@@ -64,6 +55,7 @@ Every tool invocation through an MCP endpoint creates a log entry containing:
|
||||
- **Endpoint**: Filter by specific MCP endpoint
|
||||
- **Tool**: Filter by specific tool
|
||||
- **User**: Filter by specific user
|
||||
- **Server**: Filter by specific MCP server
|
||||
</Step>
|
||||
<Step title="View log details">
|
||||
Click on any log entry to expand it and view the full details:
|
||||
|
||||
@@ -8,13 +8,13 @@ description: "Learn what the Model Context Protocol is and how Infisical helps y
|
||||
|
||||
The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) is an open standard that enables AI assistants and agents to securely connect to external data sources and tools. It provides a unified way for AI systems to interact with services like Notion, GitHub, Slack, databases, and more.
|
||||
|
||||
Think of MCP as a universal adapter between AI systems and the tools they need to be useful. Instead of building custom integrations for each AI platform and each tool, MCP provides a standardized protocol that any AI client can use to connect to any MCP-compatible server.
|
||||
Think of MCP as a universal adapter between AI systems and the tools they need. Instead of building custom integrations for each AI platform and each tool, MCP provides a standardized protocol that any AI client can use to connect to any MCP-compatible server.
|
||||
|
||||
## How Does MCP Work?
|
||||
|
||||
MCP follows a client-server architecture:
|
||||
|
||||
- **MCP Clients**: AI applications like Claude Desktop, ChatGPT, or custom AI agents that need to access external tools.
|
||||
- **MCP Clients**: AI applications like Claude, ChatGPT, or custom AI agents that need to access external tools.
|
||||
- **MCP Servers**: Services that expose tools and capabilities through the MCP protocol. These can be first-party servers (like Notion's official MCP server) or custom servers you build.
|
||||
|
||||
When an AI assistant needs to perform an action—like searching Notion, creating a GitHub issue, or querying a database—it communicates with the appropriate MCP server using the standardized protocol.
|
||||
|
||||
@@ -6,7 +6,7 @@ description: "Learn how to create and manage MCP endpoints for AI clients."
|
||||
|
||||
## Concept
|
||||
|
||||
MCP Endpoints are the entry points that AI clients (like Claude, ChatGPT, or custom agents) use to access your configured MCP servers. Instead of connecting AI clients directly to individual MCP servers, you connect them to an MCP endpoint which acts as a secure gateway.
|
||||
MCP Endpoints are the entry points that AI clients (like Claude, ChatGPT, or custom agents) use to access your configured MCP Servers. Instead of connecting AI clients directly to individual MCP servers, you connect them to an Infisical MCP Endpoint which acts as a secure gateway.
|
||||
|
||||
This architecture provides several benefits:
|
||||
|
||||
@@ -52,8 +52,8 @@ In the following steps, we explore how to create an MCP endpoint and connect it
|
||||
Enter the following details for your endpoint:
|
||||
|
||||
- **Name**: A friendly name to identify this endpoint (e.g., "Engineering Team Endpoint")
|
||||
- **Description**: (Optional) A description of the endpoint's purpose
|
||||
- **Connected Servers**: Select the MCP servers to make available through this endpoint
|
||||
- **Description (Optional)**: A description of the endpoint's purpose
|
||||
- **Connected Servers**: A selection of the MCP servers to make available through this endpoint
|
||||
|
||||

|
||||
</Step>
|
||||
@@ -82,10 +82,10 @@ In the following steps, we explore how to create an MCP endpoint and connect it
|
||||
Once you have your endpoint URL, you can connect AI clients to it.
|
||||
|
||||
<Tabs>
|
||||
<Tab title="Claude Desktop">
|
||||
Add the endpoint to your Claude Desktop MCP configuration:
|
||||
<Tab title="Claude">
|
||||
Add the endpoint to your Claude MCP configuration:
|
||||
|
||||
1. Open Claude Desktop settings
|
||||
1. Open Claude settings
|
||||
2. Navigate to the MCP section
|
||||
3. Add a new server with your Infisical endpoint URL
|
||||
4. Click **Connect**
|
||||
|
||||
@@ -84,7 +84,7 @@ In the following steps, we explore how to add an MCP server to your Agentic Mana
|
||||
<Step title="Review available tools">
|
||||
After authorization, Infisical discovers and displays all tools available from the MCP server.
|
||||
|
||||
You can view each tool's name and description. These tools can now be enabled on [MCP Endpoints](/documentation/platform/agentic-manager/mcp-endpoints).
|
||||
You can view each tool's name and description. These tools can now be enabled in [MCP Endpoints](/documentation/platform/agentic-manager/mcp-endpoints).
|
||||
|
||||

|
||||
</Step>
|
||||
|
||||
Reference in New Issue
Block a user